From 15d5b48f700f70463963d366c9a240af2c6cb8bf Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Mon, 13 Dec 2004 14:55:13 +0000 Subject: [PATCH] Fix typo. Bug 540. Patch from Froosh. git-svn-id: https://develop.svn.wordpress.org/trunk@1942 602fd350-edb4-49c9-b593-d223f7449a82 --- xmlrpc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xmlrpc.php b/xmlrpc.php index a6558ac8b7..352b491c61 100644 --- a/xmlrpc.php +++ b/xmlrpc.php @@ -240,7 +240,7 @@ class wp_xmlrpc_server extends IXR_Server { $post_date = mysql2date('Ymd\TH:i:s', $entry['post_date']); $categories = implode(',', wp_get_post_cats(1, $entry['ID'])); - $content = ''.stripslashes($entry['post_itle']).''; + $content = ''.stripslashes($entry['post_title']).''; $content .= ''.$categories.''; $content .= stripslashes($entry['post_content']);