From: Michael J. Rubinsky Date: Tue, 17 Feb 2009 16:05:55 +0000 (-0500) Subject: I don't see where these are used, or why we would need them... X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=02beb7ab76dc6e237948c77e69a0c34765d39df0;p=horde.git I don't see where these are used, or why we would need them... --- diff --git a/framework/Service_Facebook/lib/Horde/Service/Facebook.php b/framework/Service_Facebook/lib/Horde/Service/Facebook.php index 95983ac64..b7ee75774 100644 --- a/framework/Service_Facebook/lib/Horde/Service/Facebook.php +++ b/framework/Service_Facebook/lib/Horde/Service/Facebook.php @@ -571,35 +571,6 @@ class Horde_Service_Facebook } /** - * JSON encode a validation error. - * - * @return string JSON encoded error message. - */ - public function encode_validationError($summary, $message) - { - return json_encode( - array('errorCode' => FACEBOOK_API_VALIDATION_ERROR, - 'errorTitle' => $summary, - 'errorMessage' => $message)); - } - - public function encode_multiFeedStory($feed, $next) - { - return json_encode( - array('method' => 'multiFeedStory', - 'content' => array('next' => $next, - 'feed' => $feed))); - } - - public function encode_feedStory($feed, $next) - { - return json_encode( - array('method' => 'feedStory', - 'content' => array('next' => $next, - 'feed' => $feed))); - } - - /** * Start a batch operation. */ public function begin_batch()