|
From: Jon O. <jon...@us...> - 2007-07-12 22:44:34
|
Update of /cvsroot/mxbb/mx_bugsbt In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv27179 Modified Files: db_install.php db_uninstall.php db_upgrade.php Log Message: O yea, finally commenting is activated Also, a bunch of general updates/fixes Index: db_uninstall.php =================================================================== RCS file: /cvsroot/mxbb/mx_bugsbt/db_uninstall.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** db_uninstall.php 7 Jun 2007 19:58:33 -0000 1.1 --- db_uninstall.php 12 Jul 2007 22:43:58 -0000 1.2 *************** *** 39,63 **** $sql = array( - "DROP TABLE " . $mx_table_prefix . "kb_articles ", - - "DROP TABLE " . $mx_table_prefix . "kb_categories ", - - "DROP TABLE " . $mx_table_prefix . "kb_config ", - - "DROP TABLE " . $mx_table_prefix . "kb_types ", ! //"DROP TABLE " . $mx_table_prefix . "kb_wordlist ", ! ! //"DROP TABLE " . $mx_table_prefix . "kb_results ", ! ! //"DROP TABLE " . $mx_table_prefix . "kb_wordmatch ", ! ! "DROP TABLE " . $mx_table_prefix . "kb_votes ", ! ! "DROP TABLE " . $mx_table_prefix . "kb_custom ", ! ! "DROP TABLE " . $mx_table_prefix . "kb_comments ", ! ! "DROP TABLE " . $mx_table_prefix . "kb_customdata " ); --- 39,50 ---- $sql = array( ! "DROP TABLE IF EXISTS " . $mx_table_prefix . "bugsbt_bugs ", ! "DROP TABLE IF EXISTS " . $mx_table_prefix . "bugsbt_products ", ! "DROP TABLE IF EXISTS " . $mx_table_prefix . "bugsbt_config ", ! "DROP TABLE IF EXISTS " . $mx_table_prefix . "bugsbt_types ", ! "DROP TABLE IF EXISTS " . $mx_table_prefix . "bugsbt_custom ", ! "DROP TABLE IF EXISTS " . $mx_table_prefix . "bugsbt_comments ", ! "DROP TABLE IF EXISTS " . $mx_table_prefix . "bugsbt_customdata ", ); Index: db_install.php =================================================================== RCS file: /cvsroot/mxbb/mx_bugsbt/db_install.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** db_install.php 5 Jun 2007 21:20:59 -0000 1.3 --- db_install.php 12 Jul 2007 22:43:57 -0000 1.4 *************** *** 31,35 **** } ! $mx_module_version = '1.0.1'; $mx_module_copy = 'Designed for mxBB by <a href="http://www.mxbb.net" target="_blank">Jon</a>'; --- 31,35 ---- } ! $mx_module_version = '1.0.2'; $mx_module_copy = 'Designed for mxBB by <a href="http://www.mxbb.net" target="_blank">Jon</a>'; *************** *** 39,46 **** $message = "<b>This is a new module installation!</b><br/><br/>"; ! $sql = array( "DROP TABLE IF EXISTS " . $mx_table_prefix . "bugsbt_bugs ", "DROP TABLE IF EXISTS " . $mx_table_prefix . "bugsbt_products ", "DROP TABLE IF EXISTS " . $mx_table_prefix . "bugsbt_config ", "DROP TABLE IF EXISTS " . $mx_table_prefix . "bugsbt_types ", "CREATE TABLE " . $mx_table_prefix . "bugsbt_products ( --- 39,50 ---- $message = "<b>This is a new module installation!</b><br/><br/>"; ! $sql = array( ! "DROP TABLE IF EXISTS " . $mx_table_prefix . "bugsbt_bugs ", "DROP TABLE IF EXISTS " . $mx_table_prefix . "bugsbt_products ", "DROP TABLE IF EXISTS " . $mx_table_prefix . "bugsbt_config ", "DROP TABLE IF EXISTS " . $mx_table_prefix . "bugsbt_types ", + "DROP TABLE IF EXISTS " . $mx_table_prefix . "bugsbt_custom ", + "DROP TABLE IF EXISTS " . $mx_table_prefix . "bugsbt_comments ", + "DROP TABLE IF EXISTS " . $mx_table_prefix . "bugsbt_customdata ", "CREATE TABLE " . $mx_table_prefix . "bugsbt_products ( *************** *** 112,117 **** bug_closed tinyint(1) unsigned NOT NULL default '0', ! bug_date int(50) NOT NULL default NULL, ! bug_update_date int(50) NOT NULL default NULL, bug_author_id mediumint(8) NOT NULL, username VARCHAR(255), --- 116,121 ---- bug_closed tinyint(1) unsigned NOT NULL default '0', ! bug_date int(50) default NULL, ! bug_update_date int(50) default NULL, bug_author_id mediumint(8) NOT NULL, username VARCHAR(255), Index: db_upgrade.php =================================================================== RCS file: /cvsroot/mxbb/mx_bugsbt/db_upgrade.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** db_upgrade.php 7 Jun 2007 19:58:33 -0000 1.1 --- db_upgrade.php 12 Jul 2007 22:43:58 -0000 1.2 *************** *** 30,34 **** } ! $mx_module_version = '1.0.0'; $mx_module_copy = 'Designed for mxBB by <a href="http://www.mxbb-portal.com" target="_blank">Jon</a>'; --- 30,34 ---- } ! $mx_module_version = '1.0.2'; $mx_module_copy = 'Designed for mxBB by <a href="http://www.mxbb-portal.com" target="_blank">Jon</a>'; |