Use wp_slash() in places where we improperly used the DB API instead. see #21767.
git-svn-id: http://core.svn.wordpress.org/trunk@24713 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
@@ -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'];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user