From da4045e8862d8cdd4b862c91f634e135618d12a9 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Sat, 29 Jul 2006 01:45:17 +0000 Subject: [PATCH] No magic vals git-svn-id: https://develop.svn.wordpress.org/trunk@4067 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/wp-db.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/wp-db.php b/wp-includes/wp-db.php index 071be8272d..f88ab5166e 100644 --- a/wp-includes/wp-db.php +++ b/wp-includes/wp-db.php @@ -93,8 +93,8 @@ class wpdb { $EZSQL_ERROR[] = array ('query' => $this->last_query, 'error_str' => $str); - $str = htmlspecialchars($str, 1); - $query = htmlspecialchars($this->last_query, 1); + $str = htmlspecialchars($str, ENT_QUOTES); + $query = htmlspecialchars($this->last_query, ENT_QUOTES); // Is error output turned on or not.. if ( $this->show_errors ) { // If there is an error then take note of it