From 4e81b356415025b5f63edd8307a6d53b3a8a294d Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sat, 8 Oct 2005 04:18:05 +0000 Subject: [PATCH] Fixed two mis-replaces that occurred with the grep --- db_mysql.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/db_mysql.php b/db_mysql.php index 67e4447..747b10b 100644 --- a/db_mysql.php +++ b/db_mysql.php @@ -149,7 +149,7 @@ class MySQL_Database_Driver */ function query($query_str) { - $this->query_id = @mysql_query($query_string, $this->link_id); + $this->query_id = @mysql_query($query_str, $this->link_id); $this->query_str = $query_str; $this->history[] = $this->query_str; @@ -178,7 +178,7 @@ class MySQL_Database_Driver */ function escape_string($string) { - return @mysql_real_escape_stringing($string, $this->link_id); + return @mysql_real_escape_string($string, $this->link_id); } /** -- 2.22.5