|
From: Doug K. <dou...@us...> - 2002-06-27 21:26:49
|
Update of /cvsroot/phpbb/phpBB2/admin
In directory usw-pr-cvs1:/tmp/cvs-serv24486/admin
Modified Files:
Tag: phpBB-2_0_0
admin_db_utilities.php
Log Message:
Ok, fixing a few bugs here.... I still have more to do, but this fixes a
funny bug in login.php where redirect won't allow more than the file and
mode... Now it should work with posting (or any other page). Also fixes a
typo in admin_db_utilities.php.
P.S. James, don't commit config.php. ;) Fortunately, it didn't seem like
you lost a password.... :D
Index: admin_db_utilities.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/admin/admin_db_utilities.php,v
retrieving revision 1.42.2.4
retrieving revision 1.42.2.5
diff -C2 -r1.42.2.4 -r1.42.2.5
*** admin_db_utilities.php 21 May 2002 18:35:26 -0000 1.42.2.4
--- admin_db_utilities.php 27 Jun 2002 21:26:46 -0000 1.42.2.5
***************
*** 377,381 ****
//
$result = $db->sql_query($field_query);
! if(!result)
{
message_die(GENERAL_ERROR, "Failed in get_table_def (show fields)", "", __LINE__, __FILE__, $field_query);
--- 377,381 ----
//
$result = $db->sql_query($field_query);
! if(!$result)
{
message_die(GENERAL_ERROR, "Failed in get_table_def (show fields)", "", __LINE__, __FILE__, $field_query);
|