|
From: FlorinCB <ory...@us...> - 2008-12-17 00:26:43
|
Update of /cvsroot/mxbb/mx_calsnails In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv21731 Modified Files: db_install.php db_upgrade.php Log Message: development version 2.9.0 Index: db_install.php =================================================================== RCS file: /cvsroot/mxbb/mx_calsnails/db_install.php,v retrieving revision 1.31 retrieving revision 1.32 diff -C2 -d -r1.31 -r1.32 *** db_install.php 3 Jun 2008 20:07:09 -0000 1.31 --- db_install.php 17 Dec 2008 00:26:36 -0000 1.32 *************** *** 31,35 **** } ! $mx_module_version = '2.2.4'; $mx_module_copy = 'Original phpBB <i>Calendar LITE</i> MOD by <a href="http://www.snailsource.com/" target="_blank">Martin</a> :: Adapted for MX-Publisher by [Jon Ohlsson] <a href="http://www.mx-publisher.com" target="_blank">The MX-Publisher Development Team</a>'; --- 31,35 ---- } ! $mx_module_version = '2.9.0'; $mx_module_copy = 'Original phpBB <i>Calendar LITE</i> MOD by <a href="http://www.snailsource.com/" target="_blank">Martin</a> :: Adapted for MX-Publisher by [Jon Ohlsson] <a href="http://www.mx-publisher.com" target="_blank">The MX-Publisher Development Team</a>'; *************** *** 56,60 **** stamp datetime, subject varchar(255), ! description blob, user_id mediumint(1) DEFAULT '-1' NOT NULL, valid char(3) DEFAULT 'no' NOT NULL, --- 56,60 ---- stamp datetime, subject varchar(255), ! description mediumtext, user_id mediumint(1) DEFAULT '-1' NOT NULL, valid char(3) DEFAULT 'no' NOT NULL, *************** *** 63,67 **** block_id mediumint(8) unsigned NOT NULL default '0', PRIMARY KEY (event_id) ! )", // Table: Calendar Lite Configuration "CREATE TABLE " . CALLITE_CONFIG_TABLE . " ( --- 63,67 ---- block_id mediumint(8) unsigned NOT NULL default '0', PRIMARY KEY (event_id) ! ) CHARACTER SET utf8 COLLATE utf8_bin", // Table: Calendar Lite Configuration "CREATE TABLE " . CALLITE_CONFIG_TABLE . " ( *************** *** 69,73 **** config_value varchar(255) NOT NULL default '', PRIMARY KEY (config_name) ! )", // Inserts: Default Calendar Configuration "INSERT INTO " . CALLITE_CONFIG_TABLE . " VALUES ('week_start', '0')", --- 69,73 ---- config_value varchar(255) NOT NULL default '', PRIMARY KEY (config_name) ! ) CHARACTER SET utf8 COLLATE utf8_bin", // Inserts: Default Calendar Configuration "INSERT INTO " . CALLITE_CONFIG_TABLE . " VALUES ('week_start', '0')", Index: db_upgrade.php =================================================================== RCS file: /cvsroot/mxbb/mx_calsnails/db_upgrade.php,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** db_upgrade.php 3 Jun 2008 20:07:09 -0000 1.24 --- db_upgrade.php 17 Dec 2008 00:26:36 -0000 1.25 *************** *** 31,35 **** } ! $mx_module_version = '2.2.4'; $mx_module_copy = 'Original phpBB <i>Calendar LITE</i> MOD by <a href="http://www.snailsource.com/" target="_blank">Martin</a> :: Adapted for MX-Publisher by [Jon Ohlsson] <a href="http://www.mx-publisher.com" target="_blank">The MX-Publisher Development Team</a>'; --- 31,35 ---- } ! $mx_module_version = '2.9.0'; $mx_module_copy = 'Original phpBB <i>Calendar LITE</i> MOD by <a href="http://www.snailsource.com/" target="_blank">Martin</a> :: Adapted for MX-Publisher by [Jon Ohlsson] <a href="http://www.mx-publisher.com" target="_blank">The MX-Publisher Development Team</a>'; |