|
From: OryNider <ory...@us...> - 2008-02-04 19:07:58
|
Update of /cvsroot/mxbb/core/modules/mx_users In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv1481/mx_users Modified Files: db_install.php db_upgrade.php Log Message: ok, punctualition corrected on db_install as I corrupted them last time Index: db_install.php =================================================================== RCS file: /cvsroot/mxbb/core/modules/mx_users/db_install.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** db_install.php 4 Feb 2008 18:53:12 -0000 1.3 --- db_install.php 4 Feb 2008 19:07:51 -0000 1.4 *************** *** 2,8 **** /** * ! * @package MX-Publisher Module - mx_users * @version $Id$ ! * @copyright (c) 2002-2008 [menalto.gallery.com, Jon Ohlsson] mxBB Project Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * @link http://www.mx-publisher.com --- 2,8 ---- /** * ! * @package mxBB Portal Module - mx_users * @version $Id$ ! * @copyright (c) 2002-2006 [menalto.gallery.com, Jon Ohlsson] mxBB Project Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * @link http://www.mx-publisher.com *************** *** 33,37 **** $mx_module_version = 'mxBB Core Module'; ! $mx_module_copy = 'Based on original phpBB <i>Admin Tool MODs</i> by Adam Alkins, Omar Ramadan & wGEric :: Adapted for MX-Publisher by <a href="http://www.mx-publisher.com" target="_blank">Jon</a>'; $message = "<b>This is a fresh install!</b><br/><br/>"; --- 33,37 ---- $mx_module_version = 'mxBB Core Module'; ! $mx_module_copy = 'Based on original phpBB <i>Admin Tool MODs</i> by Adam Alkins, Omar Ramadan & wGEric :: Adapted for mxBB by <a href="http://www.mx-publisher.com" target="_blank">Jon</a>'; $message = "<b>This is a fresh install!</b><br/><br/>"; Index: db_upgrade.php =================================================================== RCS file: /cvsroot/mxbb/core/modules/mx_users/db_upgrade.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** db_upgrade.php 4 Feb 2008 18:53:12 -0000 1.3 --- db_upgrade.php 4 Feb 2008 19:07:52 -0000 1.4 *************** *** 2,8 **** /** * ! * @package MX-Publisher Module - mx_users * @version $Id$ ! * @copyright (c) 2002-2008 [menalto.gallery.com, Jon Ohlsson] mxBB Project Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * @link http://www.mx-publisher.com --- 2,8 ---- /** * ! * @package mxBB Portal Module - mx_users * @version $Id$ ! * @copyright (c) 2002-2006 [menalto.gallery.com, Jon Ohlsson] mxBB Project Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * @link http://www.mx-publisher.com *************** *** 33,39 **** $mx_module_version = 'mxBB Core Module'; ! $mx_module_copy = 'Based on original phpBB <i>Admin Tool MODs</i> by Adam Alkins, Omar Ramadan & wGEric :: Adapted for MX-Publisher by <a href="http://www.mx-publisher.com" target="_blank">Jon</a>'; ! $message = "<b>Upgrading!</b><br/><br/>"; $sql = array(); --- 33,39 ---- $mx_module_version = 'mxBB Core Module'; ! $mx_module_copy = 'Based on original phpBB <i>Admin Tool MODs</i> by Adam Alkins, Omar Ramadan & wGEric :: Adapted for mxBB by <a href="http://www.mx-publisher.com" target="_blank">Jon</a>'; ! $message = "<b>" . $lang['upgrading'] . "!</b><br/><br/>"; $sql = array(); *************** *** 45,53 **** $message .= mx_do_install_upgrade( $sql ); ! $message .= "<b>...Now upgraded to v. $mx_module_version :-)</b><br/><br/>"; echo "<br /><br />"; echo "<table width=\"90%\" align=\"center\" cellpadding=\"4\" cellspacing=\"1\" border=\"0\" class=\"forumline\">"; ! echo "<tr><th class=\"thHead\" align=\"center\">Module Installation/Upgrading/Uninstalling Information - module specific db tables</th></tr>"; echo "<tr><td class=\"row1\" align=\"left\"><span class=\"gen\">" . $message . "</span></td></tr>"; echo "</table><br />"; --- 45,53 ---- $message .= mx_do_install_upgrade( $sql ); ! $message .= "<b>". $lang['upgraded_to_ver'] . $mx_module_version . " :-)</b><br/><br/>";; echo "<br /><br />"; echo "<table width=\"90%\" align=\"center\" cellpadding=\"4\" cellspacing=\"1\" border=\"0\" class=\"forumline\">"; ! echo "<tr><th class=\"thHead\" align=\"center\">" . $lang['module_install_info'] . "</th></tr>"; echo "<tr><td class=\"row1\" align=\"left\"><span class=\"gen\">" . $message . "</span></td></tr>"; echo "</table><br />"; |