Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tables.sql
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ CREATE TABLE `sc_bookmarks` (
`bModified` datetime NOT NULL default '0000-00-00 00:00:00',
`bTitle` varchar(255) NOT NULL default '',
`bAddress` text NOT NULL,
`bDescription` varchar(255) default NULL,
`bDescription` varchar(1000) default NULL,
`bHash` varchar(32) NOT NULL default '',
PRIMARY KEY (`bId`),
KEY `sc_bookmarks_usd` (`uId`,`bStatus`,`bDatetime`),
Expand Down Expand Up @@ -65,4 +65,4 @@ CREATE TABLE `sc_watched` (
`watched` int(11) NOT NULL default '0',
PRIMARY KEY (`wId`),
KEY `sc_watched_uId` (`uId`)
);
);
4 changes: 2 additions & 2 deletions templates/editbookmark.tpl.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
</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><textarea name="description" cols="74" rows="5" maxlength="1000"><?php echo filter($row['bDescription'], 'xml'); ?></textarea></td>
<td></td>
</tr>
<tr>
Expand Down Expand Up @@ -108,4 +108,4 @@
<?php
}
$this->includeTemplate($GLOBALS['bottom_include']);
?>
?>