summaryrefslogtreecommitdiffstats
path: root/xmlrpc.php
diff options
context:
space:
mode:
authordonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2006-11-27 11:19:48 +0000
committerdonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2006-11-27 11:19:48 +0000
commit5447f131269541ea942ae9239c95b4e1188fb57c (patch)
tree11bbdce67a32ce816b14425dd95244786a29b801 /xmlrpc.php
parent600b71019494e1c29898a620e58c0d2602f37b74 (diff)
downloadwordpress-mu-5447f131269541ea942ae9239c95b4e1188fb57c.tar.gz
wordpress-mu-5447f131269541ea942ae9239c95b4e1188fb57c.tar.xz
wordpress-mu-5447f131269541ea942ae9239c95b4e1188fb57c.zip
WP Merge to rev 4534
git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@811 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'xmlrpc.php')
-rw-r--r--xmlrpc.php4
1 files changed, 2 insertions, 2 deletions
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');