From 5447f131269541ea942ae9239c95b4e1188fb57c Mon Sep 17 00:00:00 2001 From: donncha Date: Mon, 27 Nov 2006 11:19:48 +0000 Subject: WP Merge to rev 4534 git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@811 7be80a69-a1ef-0310-a953-fb0f7c49ff36 --- xmlrpc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'xmlrpc.php') diff --git a/xmlrpc.php b/xmlrpc.php index 94226dd..6153e50 100644 --- a/xmlrpc.php +++ b/xmlrpc.php @@ -1219,10 +1219,10 @@ class wp_xmlrpc_server extends IXR_Server { $comment_post_ID = (int) $post_ID; $comment_author = $title; - $wpdb->escape($comment_author); + $this->escape($comment_author); $comment_author_url = $pagelinkedfrom; $comment_content = $context; - $wpdb->escape($comment_content); + $this->escape($comment_content); $comment_type = 'pingback'; $commentdata = compact('comment_post_ID', 'comment_author', 'comment_author_url', 'comment_content', 'comment_type'); -- cgit