Use wp_slash() in places where we improperly used the DB API instead. see #21767.

git-svn-id: https://develop.svn.wordpress.org/trunk@24713 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin
2013-07-16 14:19:03 +00:00
parent 823d6b779b
commit 25708e95f1
4 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -1492,7 +1492,7 @@ function wp_update_comment($commentarr) {
$comment = get_comment($commentarr['comment_ID'], ARRAY_A);
// Escape data pulled from DB.
$comment = esc_sql($comment);
$comment = wp_slash($comment);
$old_status = $comment['comment_approved'];