mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-31 14:00:31 +02:00
Removed odbc_error stuff since it doesn't work anyway
git-svn-id: file:///svn/phpbb/trunk@1943 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -355,10 +355,10 @@ class sql_db
|
||||
return true;
|
||||
}
|
||||
|
||||
function sql_error($query_id = 0)
|
||||
function sql_error()
|
||||
{
|
||||
$error['code'] = odbc_error($this->db_connect_id);
|
||||
$error['message'] = odbc_errormsg($this->db_connect_id);
|
||||
$error['code'] = "";//odbc_error($this->db_connect_id);
|
||||
$error['message'] = "Error";//odbc_errormsg($this->db_connect_id);
|
||||
|
||||
return $error;
|
||||
}
|
||||
|
Reference in New Issue
Block a user