From 23dc81aa5d6accafc0b4c5e82cf344ec6affe09e Mon Sep 17 00:00:00 2001
From: Vasken Hauri <vhauri@gmail.com>
Date: Tue, 26 Mar 2013 20:37:14 +0000
Subject: [PATCH] add a missing include for the WP_XML client

---
 includes/class-syndication-client-factory.php | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/includes/class-syndication-client-factory.php b/includes/class-syndication-client-factory.php
index a4b316f..03428d9 100644
--- a/includes/class-syndication-client-factory.php
+++ b/includes/class-syndication-client-factory.php
@@ -1,6 +1,7 @@
 <?php
 
 include_once( dirname( __FILE__ ) . '/class-syndication-wp-xmlrpc-client.php' );
+include_once( dirname( __FILE__ ) . '/class-syndication-wp-xml-client.php' );
 include_once( dirname( __FILE__ ) . '/class-syndication-wp-rest-client.php' );
 include_once( dirname( __FILE__ ) . '/class-syndication-wp-rss-client.php' );
 
@@ -43,4 +44,4 @@ class Syndication_Client_Factory {
 		return 'Syndication_' . $transport_type . '_Client';
 	}
 
-}
\ No newline at end of file
+}
-- 
GitLab