diff options
| author | Paul S. Owen <psotfx@users.sourceforge.net> | 2002-01-25 02:01:24 +0000 |
|---|---|---|
| committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2002-01-25 02:01:24 +0000 |
| commit | af082045ec91765c8030171ae1274c1ac0cb0705 (patch) | |
| tree | b1388ac0054747a5cdb15bd5df177a0e18af382d /phpBB/db | |
| parent | 2ebc299d3550c447af752f4afeb61697d408c3b3 (diff) | |
| download | forums-af082045ec91765c8030171ae1274c1ac0cb0705.tar forums-af082045ec91765c8030171ae1274c1ac0cb0705.tar.gz forums-af082045ec91765c8030171ae1274c1ac0cb0705.tar.bz2 forums-af082045ec91765c8030171ae1274c1ac0cb0705.tar.xz forums-af082045ec91765c8030171ae1274c1ac0cb0705.zip | |
Removed odbc_error stuff since it doesn't work anyway
git-svn-id: file:///svn/phpbb/trunk@1943 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/db')
| -rw-r--r-- | phpBB/db/msaccess.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/db/msaccess.php b/phpBB/db/msaccess.php index 196bedda1c..49e9a50e5a 100644 --- a/phpBB/db/msaccess.php +++ b/phpBB/db/msaccess.php @@ -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; } |
