|
From: Paul S. O. <ps...@us...> - 2001-12-31 19:02:45
|
Update of /cvsroot/phpbb/phpBB2
In directory usw-pr-cvs1:/tmp/cvs-serv7177
Modified Files:
upgrade.php
Log Message:
Fix various errors and problems, added additional sig check method, added edit post upgrade method, poster_ip changes, config changes, search system integration, etc. etc.
Index: upgrade.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/upgrade.php,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -r1.9 -r1.10
*** upgrade.php 2001/12/25 01:20:32 1.9
--- upgrade.php 2001/12/31 19:02:42 1.10
***************
*** 19,22 ****
--- 19,23 ----
*
***************************************************************************/
+
if ( !defined('INSTALLING') )
{
***************
*** 30,43 ****
include('includes/functions.'.$phpEx);
}
[...2555 lines suppressed...]
!
! for($i = 0; $i < count($drop_tables); $i++)
! {
! print " * Table :: " . $drop_tables[$i] . " ... ";
! flush();
!
! $sql = "DROP TABLE " . $drop_tables[$i];
! query($sql, "Couldn't drop table :: " . $drop_tables[$i]);
!
! print "Done<br />\n";
! }
!
! echo "\n<br />Completed<br /><br />\n\n<font size=\"+1\"><b>UPGRADE COMPLETED</b></font><br />\n";
}
}
!
! print "<br />If the upgrade completed without error you may click <a href=\"index.$phpEx\">Here</a> to proceed to the index<br />";
!
! ?>
\ No newline at end of file
|