From 20ae785c4c766328f42d52a52d87c0936596befa Mon Sep 17 00:00:00 2001 From: ryan Date: Mon, 4 Jul 2005 06:27:04 +0000 Subject: [PATCH] Typo. git-svn-id: http://svn.automattic.com/wordpress/trunk@2696 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/wp-db.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/wp-db.php b/wp-includes/wp-db.php index 81c35ee5df..73d4be7d77 100644 --- a/wp-includes/wp-db.php +++ b/wp-includes/wp-db.php @@ -76,7 +76,7 @@ class wpdb { // ==================================================================== // Format a string correctly for safe insert under all PHP conditions - function escape($str) { + function escape($string) { if( !$this->dbh || version_compare( phpversion(), '4.3.0' ) == '-1' ) return mysql_escape_string( $string ); else