|
From: FlorinCB <ory...@us...> - 2008-12-25 14:32:25
|
Update of /cvsroot/mxbb/mx_contact In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv7113 Modified Files: db_install.php db_upgrade.php Log Message: fix Index: db_install.php =================================================================== RCS file: /cvsroot/mxbb/mx_contact/db_install.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** db_install.php 25 Dec 2008 08:49:37 -0000 1.6 --- db_install.php 25 Dec 2008 14:32:20 -0000 1.7 *************** *** 36,40 **** $mx_module_version = '2.9.1'; ! $mx_module_copy = 'MX-Publisher <i> - Contact</i> module by Florin C Bodin'; // If fresh install --- 36,40 ---- $mx_module_version = '2.9.1'; ! $mx_module_copy = 'MX-Publisher <i> - Contact</i> module by Florin C Bodin, <a title="author" alt="Marcus Smith" href="http://www.phobbia.net/mods/">Marcus Smith</a>'; // If fresh install *************** *** 92,96 **** group_id mediumint(8) NOT NULL default \'0\', email_subject varchar(60) NOT NULL default \'\', ! email_body text NOT NULL, batch_start mediumint(8) NOT NULL default \'0\', batch_size smallint(5) unsigned NOT NULL default \'0\', --- 92,96 ---- group_id mediumint(8) NOT NULL default \'0\', email_subject varchar(60) NOT NULL default \'\', ! email_body mediumtext NOT NULL, batch_start mediumint(8) NOT NULL default \'0\', batch_size smallint(5) unsigned NOT NULL default \'0\', Index: db_upgrade.php =================================================================== RCS file: /cvsroot/mxbb/mx_contact/db_upgrade.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** db_upgrade.php 25 Dec 2008 09:32:40 -0000 1.4 --- db_upgrade.php 25 Dec 2008 14:32:20 -0000 1.5 *************** *** 31,35 **** $mx_module_version = '2.9.1'; ! $mx_module_copy = 'MX-Publisher <i> - Contact</i> module by Florin C Bodin'; $sql = array(); --- 31,36 ---- $mx_module_version = '2.9.1'; ! $mx_module_copy = 'MX-Publisher <i> - Contact</i> module by Florin C Bodin, <a title="author" alt="Marcus Smith" href="http://www.phobbia.net/mods/">Marcus Smith</a>'; ! $sql = array(); *************** *** 75,79 **** group_id mediumint(8) NOT NULL default \'0\', email_subject varchar(60) NOT NULL default \'\', ! email_body text NOT NULL, batch_start mediumint(8) NOT NULL default \'0\', batch_size smallint(5) unsigned NOT NULL default \'0\', --- 76,80 ---- group_id mediumint(8) NOT NULL default \'0\', email_subject varchar(60) NOT NULL default \'\', ! email_body mediumtext NOT NULL, batch_start mediumint(8) NOT NULL default \'0\', batch_size smallint(5) unsigned NOT NULL default \'0\', |