From 11c44b277cc9cc6467634cc13da85860193cc636 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Mon, 4 Jul 2005 06:27:04 +0000 Subject: [PATCH] Typo. git-svn-id: https://develop.svn.wordpress.org/trunk@2696 602fd350-edb4-49c9-b593-d223f7449a82 --- 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