From 21b03a5bc8dec9b95e2d71123f965aaee32949b9 Mon Sep 17 00:00:00 2001 From: e107steved Date: Fri, 8 Jun 2007 20:56:53 +0000 Subject: [PATCH] Bugtracker #3975 - error checking never executed --- e107_handlers/mysql_class.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/e107_handlers/mysql_class.php b/e107_handlers/mysql_class.php index f62c5bfb2..51134a309 100644 --- a/e107_handlers/mysql_class.php +++ b/e107_handlers/mysql_class.php @@ -12,8 +12,8 @@ | GNU General Public License (http://gnu.org). | | $Source: /cvs_backup/e107_0.8/e107_handlers/mysql_class.php,v $ -| $Revision: 1.12 $ -| $Date: 2007-04-24 19:40:22 $ +| $Revision: 1.13 $ +| $Date: 2007-06-08 20:56:53 $ | $Author: e107steved $ +----------------------------------------------------------------------------+ */ @@ -27,7 +27,7 @@ $db_mySQLQueryCount = 0; // Global total number of db object queries (all db's) * MySQL Abstraction class * * @package e107 -* @version $Revision: 1.12 $ +* @version $Revision: 1.13 $ * @author $Author: e107steved $ */ class db { @@ -475,8 +475,8 @@ class db { */ function db_Rows() { $rows = $this->mySQLrows = @mysql_num_rows($this->mySQLresult); - return $rows; $this->dbError('db_Rows'); + return $rows; } /**