diff options
author | the_systech <the_systech@users.sourceforge.net> | 2001-08-07 21:21:02 +0000 |
---|---|---|
committer | the_systech <the_systech@users.sourceforge.net> | 2001-08-07 21:21:02 +0000 |
commit | 2124505c10fc35a6c2d26e6ae2da93f5c7f90179 (patch) | |
tree | db3bb80f7f824e49c34c868e679bb3f24702757e | |
parent | 19bcf35a56915fbf8747e63058cc0ac4f3c1d36d (diff) | |
download | forums-2124505c10fc35a6c2d26e6ae2da93f5c7f90179.tar forums-2124505c10fc35a6c2d26e6ae2da93f5c7f90179.tar.gz forums-2124505c10fc35a6c2d26e6ae2da93f5c7f90179.tar.bz2 forums-2124505c10fc35a6c2d26e6ae2da93f5c7f90179.tar.xz forums-2124505c10fc35a6c2d26e6ae2da93f5c7f90179.zip |
Rollback from 1.16 and refix mysql_error thing...
git-svn-id: file:///svn/phpbb/trunk@812 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r-- | phpBB/admin/admin_db_utilities.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/admin/admin_db_utilities.php b/phpBB/admin/admin_db_utilities.php index a9a067d1c3..09fa5ef84c 100644 --- a/phpBB/admin/admin_db_utilities.php +++ b/phpBB/admin/admin_db_utilities.php @@ -1056,7 +1056,7 @@ if( isset($HTTP_GET_VARS['perform']) || isset($HTTP_POST_VARS['perform']) ) if(!$result && ( !(SQL_LAYER == 'postgres' && eregi("drop table", $sql) ) ) ) { include('page_header_admin.'.$phpEx); - message_die(GENERAL_ERROR, "Error importing backup file", "", __LINE__, __FILE__, mysql_error() ."<br>". $sql); + message_die(GENERAL_ERROR, "Error importing backup file", "", __LINE__, __FILE__, $sql); } } } @@ -1084,4 +1084,4 @@ if( isset($HTTP_GET_VARS['perform']) || isset($HTTP_POST_VARS['perform']) ) include('page_footer_admin.'.$phpEx); -?>
\ No newline at end of file +?> |