From 79ff6c90e2b03f0952d8eec28e84c3f95d3801c4 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Tue, 14 Aug 2007 01:44:39 +0000 Subject: [PATCH] Removing a call to _error in DbMySql.php because it's no longer needed with exceptions * DbMySql.php: (DbMySql::_selectDb) --- DbMySql.php | 1 - 1 file changed, 1 deletion(-) diff --git a/DbMySql.php b/DbMySql.php index 80c6fb4..94e59a7 100644 --- a/DbMySql.php +++ b/DbMySql.php @@ -68,7 +68,6 @@ class BSDbMySql extends BSDb if (!mysql_select_db($database, $link)) { throw new BSDbException($this->_errorString(), $this->_errorNumber(), 'Cannot use the database ' . $database); - $this->_error('Cannot use the database "' . $database . '"'); } } -- 2.22.5