|
From: Eloi G. <ada...@us...> - 2008-09-12 07:12:04
|
Update of /cvsroot/phpwebsite-comm/modules/phpwsbb/boost In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7644/boost Modified Files: uninstall.php controlpanel.php Log Message: I think the initial commit was of an older version... This fixes stuff. Index: uninstall.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/phpwsbb/boost/uninstall.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** uninstall.php 23 Aug 2008 04:19:20 -0000 1.1 --- uninstall.php 12 Sep 2008 07:12:12 -0000 1.2 *************** *** 10,14 **** PHPWS_DB::dropTable('phpwsbb_forums'); PHPWS_DB::dropTable('phpwsbb_topics'); ! PHPWS_DB::dropTable('phpwsbb_users'); $content[] = dgettext('phpwsbb', 'Bulletin Board tables removed.'); return TRUE; --- 10,15 ---- PHPWS_DB::dropTable('phpwsbb_forums'); PHPWS_DB::dropTable('phpwsbb_topics'); ! PHPWS_DB::dropTable('phpwsbb_users'); ! PHPWS_DB::dropTable('phpwsbb_moderators'); $content[] = dgettext('phpwsbb', 'Bulletin Board tables removed.'); return TRUE; Index: controlpanel.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/phpwsbb/boost/controlpanel.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** controlpanel.php 23 Aug 2008 04:19:20 -0000 1.1 --- controlpanel.php 12 Sep 2008 07:12:12 -0000 1.2 *************** *** 9,13 **** $link[] = array ('label' => dgettext('phpwsbb', 'phpWs Bulletin Board'), 'restricted' => TRUE, ! 'url' => 'index.php?module=phpwsbb&op=settings', 'description' => 'A bulletin board module.', 'image' => 'phpwsbb.png', --- 9,13 ---- $link[] = array ('label' => dgettext('phpwsbb', 'phpWs Bulletin Board'), 'restricted' => TRUE, ! 'url' => 'index.php?module=phpwsbb&op=config', 'description' => 'A bulletin board module.', 'image' => 'phpwsbb.png', |