aboutsummaryrefslogtreecommitdiffstats
path: root/apps/bookmarks/templates
diff options
context:
space:
mode:
authorWeng Xuetian <wengxt@gmail.com>2011-10-03 20:44:03 +0800
committerWeng Xuetian <wengxt@gmail.com>2011-10-03 20:44:03 +0800
commitacbd31255ecc6a8471da7d1ca4219857d16412e8 (patch)
tree40f0eb4fde5d54602a5622e5aa6a6e3ecfd96e45 /apps/bookmarks/templates
parent25544d31f91fe97b03360d2285a6317129fdf0ac (diff)
downloadnextcloud-server-acbd31255ecc6a8471da7d1ca4219857d16412e8.tar.gz
nextcloud-server-acbd31255ecc6a8471da7d1ca4219857d16412e8.zip
fix add bookmark bug.
Diffstat (limited to 'apps/bookmarks/templates')
-rw-r--r--apps/bookmarks/templates/addBm.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/bookmarks/templates/addBm.php b/apps/bookmarks/templates/addBm.php
index 8289c8c5a43..36f04e135b6 100644
--- a/apps/bookmarks/templates/addBm.php
+++ b/apps/bookmarks/templates/addBm.php
@@ -1,8 +1,8 @@
<div class="bookmarks_addBm">
- <p><label class="bookmarks_label"><?php echo $l->t('Address'); ?></label><input type="text" id="bookmark_add_url" class="bookmarks_input" value="<? echo $_['URL']; ?>"/></p>
- <p><label class="bookmarks_label"><?php echo $l->t('Title'); ?></label><input type="text" id="bookmark_add_title" class="bookmarks_input" value="<? echo $_['TITLE']; ?>" /></p>
- <p><label class="bookmarks_label"><?php echo $l->t('Description'); ?></label><input type="text" id="bookmark_add_description" class="bookmarks_input" value="<? echo $_['DESCRIPTION']; ?>" /></p>
+ <p><label class="bookmarks_label"><?php echo $l->t('Address'); ?></label><input type="text" id="bookmark_add_url" class="bookmarks_input" value="<?php echo $_['URL']; ?>"/></p>
+ <p><label class="bookmarks_label"><?php echo $l->t('Title'); ?></label><input type="text" id="bookmark_add_title" class="bookmarks_input" value="<?php echo $_['TITLE']; ?>" /></p>
+ <p><label class="bookmarks_label"><?php echo $l->t('Description'); ?></label><input type="text" id="bookmark_add_description" class="bookmarks_input" value="<?php echo $_['DESCRIPTION']; ?>" /></p>
<p><label class="bookmarks_label"><?php echo $l->t('Tags'); ?></label><input type="text" id="bookmark_add_tags" class="bookmarks_input" /></p>
<p><label class="bookmarks_label"> </label><label class="bookmarks_hint"><?php echo $l->t('Hint: Use space to separate tags.'); ?></label></p>
<p><label class="bookmarks_label"></label><input type="submit" value="<?php echo $l->t('Add bookmark'); ?>" id="bookmark_add_submit" /></p>
-</div> \ No newline at end of file
+</div>