|
From: Paul S. O. <ps...@us...> - 2002-02-12 00:53:02
|
Update of /cvsroot/phpbb/phpBB2
In directory usw-pr-cvs1:/tmp/cvs-serv7952
Modified Files:
upgrade.php
Log Message:
Various updates to style and generated output, updated IP section to batch convert
Index: upgrade.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/upgrade.php,v
retrieving revision 1.20
retrieving revision 1.21
diff -C2 -r1.20 -r1.21
*** upgrade.php 11 Feb 2002 13:05:08 -0000 1.20
--- upgrade.php 12 Feb 2002 00:52:59 -0000 1.21
***************
*** 22,25 ****
--- 22,28 ----
if ( !defined('INSTALLING') )
{
+ error_reporting (E_ERROR | E_WARNING | E_PARSE); // This will NOT report uninitialized variables
+ set_magic_quotes_runtime(0); // Disable magic_quotes_runtime
+
//
// If we are being called from the install script then we don't need these
***************
*** 72,81 ****
[...2357 lines suppressed...]
query($sql, "Couldn't drop table :: " . $drop_tables[$i]);
! print "<span class=\"ok\"><b>OK</b></span><br />\n";
}
! echo "\n<br /><br />\n\n<font size=\"+3\"><b>UPGRADE COMPLETED</b></font><br />\n";
}
}
***************
*** 1831,1833 ****
print "<br />If the upgrade completed without error you may click <a href=\"index.$phpEx\">Here</a> to proceed to the index<br />";
! ?>
--- 1858,1862 ----
print "<br />If the upgrade completed without error you may click <a href=\"index.$phpEx\">Here</a> to proceed to the index<br />";
! common_footer();
!
! ?>
\ No newline at end of file
|