1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-31 20:00:37 +02:00

Various small updates for contact form, linkwords URL length, download log readback

This commit is contained in:
e107steved
2008-01-11 22:13:43 +00:00
parent eea27e083d
commit 778d207f39
5 changed files with 51 additions and 16 deletions

View File

@@ -11,8 +11,8 @@
| GNU General Public License (http://gnu.org).
|
| $Source: /cvs_backup/e107_0.8/e107_plugins/linkwords/admin_config.php,v $
| $Revision: 1.5 $
| $Date: 2007-07-23 21:02:35 $
| $Revision: 1.6 $
| $Date: 2008-01-11 22:13:43 $
| $Author: e107steved $
+----------------------------------------------------------------------------+
*/
@@ -165,7 +165,7 @@ $text = "
<tr>
<td style='width:50%' class='forumheader3'>".LWLAN_6."</td>
<td style='width:50%' class='forumheader3'>
<input class='tbox' type='text' name='linkword_link' size='60' value='".$linkword_link."' maxlength='150' />
<input class='tbox' type='text' name='linkword_link' size='60' value='".$linkword_link."' maxlength='200' />
</td>
</tr>

View File

@@ -2,6 +2,6 @@ CREATE TABLE linkwords (
linkword_id INT(10) UNSIGNED NOT NULL auto_increment,
linkword_active tinyint(1) unsigned NOT NULL default '0',
linkword_word varchar(100) NOT NULL default '',
linkword_link varchar(150) NOT NULL default '',
linkword_link varchar(200) NOT NULL default '',
PRIMARY KEY (linkword_id)
) TYPE=MyISAM AUTO_INCREMENT=1;