From e7c91b55b78aff8292f48d82d107b3a4865ddb99 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Thu, 28 Apr 2011 16:36:31 +0200 Subject: [PATCH] fix mdb2 error handeling a bit --- 3dparty/MDB2.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/3dparty/MDB2.php b/3dparty/MDB2.php index 19d6b8c4284..30e564f1457 100644 --- a/3dparty/MDB2.php +++ b/3dparty/MDB2.php @@ -1500,7 +1500,7 @@ class MDB2_Driver_Common extends PEAR } } - $err = $this->raiseError(null, $code, $mode, $options, $userinfo, 'MDB2_Error', true); + $err = PEAR::raiseError(null, $code, $mode, $options, $userinfo, 'MDB2_Error', true); if ($err->getMode() !== PEAR_ERROR_RETURN && isset($this->nested_transaction_counter) && !$this->has_transaction_error) { $this->has_transaction_error =$err; -- 2.39.5