From: S.Çağlar Onur Date: Tue, 9 Nov 2010 03:43:54 +0000 (-0500) Subject: fix typo X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=3e721f4958c84b425da4b5c925b0b4bea9285858;p=plcapi.git fix typo --- diff --git a/php/plc_api.php b/php/plc_api.php index 61fb2987..fed47592 100644 --- a/php/plc_api.php +++ b/php/plc_api.php @@ -84,7 +84,7 @@ class PLCAPI // Key is the md5sum of method + (arguments list - session variables) $arguments = $args; unset($arguments[0]); - return md5($method . serialize(arguments)); + return md5($method . serialize($arguments)); } function lookup($method, $args = NULL)