diff options
author | Weng Xuetian <wengxt@gmail.com> | 2011-10-03 20:44:03 +0800 |
---|---|---|
committer | Weng Xuetian <wengxt@gmail.com> | 2011-10-03 20:44:03 +0800 |
commit | acbd31255ecc6a8471da7d1ca4219857d16412e8 (patch) | |
tree | 40f0eb4fde5d54602a5622e5aa6a6e3ecfd96e45 /apps/bookmarks/templates | |
parent | 25544d31f91fe97b03360d2285a6317129fdf0ac (diff) | |
download | nextcloud-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.php | 8 |
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> |