|
From: OryNider <ory...@us...> - 2008-02-04 19:11:42
|
Update of /cvsroot/mxbb/core/modules/mx_users In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv3241 Modified Files: db_install.php Log Message: are we working @ same thing ? ;) Index: db_install.php =================================================================== RCS file: /cvsroot/mxbb/core/modules/mx_users/db_install.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** db_install.php 4 Feb 2008 19:07:51 -0000 1.4 --- db_install.php 4 Feb 2008 19:11:37 -0000 1.5 *************** *** 35,39 **** $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/>"; $sql = array(); --- 35,39 ---- $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['fresh_install'] . "!</b><br/><br/>"; $sql = array(); *************** *** 48,53 **** 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 />"; ?> --- 48,54 ---- 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 />"; + ?> |