From: Michael J. Rubinsky Date: Tue, 10 Mar 2009 13:45:06 +0000 (-0400) Subject: Fix variable name X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=82f75926a15bd597957f500073fa52e0214ef789;p=horde.git Fix variable name --- diff --git a/framework/Service_Facebook/lib/Horde/Service/Facebook/Request.php b/framework/Service_Facebook/lib/Horde/Service/Facebook/Request.php index 157d13e84..9da9f69c5 100644 --- a/framework/Service_Facebook/lib/Horde/Service/Facebook/Request.php +++ b/framework/Service_Facebook/lib/Horde/Service/Facebook/Request.php @@ -90,7 +90,7 @@ class Horde_Service_Facebook_Request // json encode them, as per the new Facebook API guidlines. // http://www.facebook.com/developers/message.php#msg_351 foreach ($params as &$param) { - if (is_array($parm)) { + if (is_array($param)) { $param = json_endcode($param); } }