diff options
author | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-12-18 16:25:17 +0000 |
---|---|---|
committer | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-12-18 16:25:17 +0000 |
commit | e0a61f1fc5e74cbbaf7c710b57bc7a2dca4d05c2 (patch) | |
tree | c03dad6ed6cc1c2b98c294f6d4c5369cc29178e5 /templates/editbookmark.tpl.php | |
parent | 1917aeaab29438639b5305b6d9c4957f1341863f (diff) | |
download | semanticscuttle-e0a61f1fc5e74cbbaf7c710b57bc7a2dca4d05c2.tar.gz semanticscuttle-e0a61f1fc5e74cbbaf7c710b57bc7a2dca4d05c2.tar.bz2 |
Interface Fix: transforms description field into textarea and authorize anchors with brackets into descriptions
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@206 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'templates/editbookmark.tpl.php')
-rw-r--r-- | templates/editbookmark.tpl.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/editbookmark.tpl.php b/templates/editbookmark.tpl.php index 9592384..7918c3f 100644 --- a/templates/editbookmark.tpl.php +++ b/templates/editbookmark.tpl.php @@ -41,8 +41,8 @@ $this->includeTemplate("dojo.inc"); </tr> <tr> <th align="left"><?php echo T_('Description'); ?></th> - <td><input type="text" name="description" size="75" maxlength="255" value="<?php echo filter($row['bDescription'], 'xml'); ?>" /></td> - <td></td> + <td><textarea name="description" rows="5" cols="63" ><?php echo filter($row['bDescription'], 'xml'); ?></textarea></td> + <td>← <?php echo T_('You can use anchors to delimite attributes. for example: [publisher]blah[/publisher] '); ?></td> </tr> <tr> <th align="left"><?php echo T_('Tags'); ?></th> |