mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00: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:
parent
2ebc299d35
commit
af082045ec
1 changed files with 3 additions and 3 deletions
|
@ -355,10 +355,10 @@ class sql_db
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
function sql_error($query_id = 0)
|
function sql_error()
|
||||||
{
|
{
|
||||||
$error['code'] = odbc_error($this->db_connect_id);
|
$error['code'] = "";//odbc_error($this->db_connect_id);
|
||||||
$error['message'] = odbc_errormsg($this->db_connect_id);
|
$error['message'] = "Error";//odbc_errormsg($this->db_connect_id);
|
||||||
|
|
||||||
return $error;
|
return $error;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue