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
This commit is contained in:
parent
1917aeaab2
commit
e0a61f1fc5
2 changed files with 7 additions and 4 deletions
|
@ -190,9 +190,12 @@ if(isset($currenttag) && $currenttag!= '') {
|
|||
|
||||
echo '<div class="link"><a href="'. $address .'"'. $rel .' class="taggedlink">'. filter($row['bTitle']) ."</a></div>\n";
|
||||
if ($row['bDescription'] == '') {
|
||||
$row['bDescription'] = '-';
|
||||
$bkDescription = '-';
|
||||
} else {
|
||||
$bkDescription = preg_replace('|\[\/.*?\]|', '', filter($row['bDescription'])); // remove final anchor
|
||||
$bkDescription = preg_replace('|\[(.*?)\]|', ' <br/><b>$1 : </b>', $bkDescription); // remove final anchor
|
||||
}
|
||||
echo '<div class="description">'. filter($row['bDescription']) ."</div>\n";
|
||||
echo '<div class="description">'. $bkDescription ."</div>\n";
|
||||
if(!isset($hash)) {
|
||||
echo '<div class="address">'.shortenString($address).'</div>';
|
||||
}
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue