From 6681b84a36a05077d0921e07ceded47a97bc3b9e Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sun, 24 Apr 2005 21:37:43 +0000 Subject: [PATCH] Fixed: Fatal error: Call to undefined function: mysql_error_no() in /WebRoot/htdocs/isso/db_mysql.php on line 274 --- db_mysql.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db_mysql.php b/db_mysql.php index 7d3406c..a1edd9d 100644 --- a/db_mysql.php +++ b/db_mysql.php @@ -271,7 +271,7 @@ class MySQL_Database_Driver { if ($this->link_id) { - $this->error_no = mysql_error_no($this->link_id); + $this->error_no = mysql_errno($this->link_id); $this->error_str = mysql_error($this->link_id); } -- 2.22.5