Fix variable name
authorMichael J. Rubinsky <mrubinsk@horde.org>
Tue, 10 Mar 2009 13:45:06 +0000 (09:45 -0400)
committerMichael J. Rubinsky <mrubinsk@horde.org>
Tue, 10 Mar 2009 13:45:06 +0000 (09:45 -0400)
framework/Service_Facebook/lib/Horde/Service/Facebook/Request.php

index 157d13e..9da9f69 100644 (file)
@@ -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);
             }
         }