From a815ef75a56d9c99eb4696f56fff4329f2c17d25 Mon Sep 17 00:00:00 2001
From: Mohammad Jangda <batmoo@gmail.com>
Date: Thu, 25 Jul 2013 11:50:31 -0400
Subject: [PATCH] s/get_response/getResponse/

Fixes fatal since get_response is no longer defined.
---
 includes/class-syndication-wp-xmlrpc-client.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/includes/class-syndication-wp-xmlrpc-client.php b/includes/class-syndication-wp-xmlrpc-client.php
index 627d908..3635ecb 100644
--- a/includes/class-syndication-wp-xmlrpc-client.php
+++ b/includes/class-syndication-wp-xmlrpc-client.php
@@ -114,7 +114,7 @@ class Syndication_WP_XMLRPC_Client extends WP_HTTP_IXR_Client implements Syndica
 			return new WP_Error( $this->getErrorCode(), $this->getErrorMessage() );
 		}
 
-		$remote_post_id = (int) $this->get_response();
+		$remote_post_id = (int) $this->getResponse();
 
 		do_action( 'syn_xmlrpc_push_new_post_success', $remote_post_id, $post_ID );
 
-- 
GitLab