diff options
Diffstat (limited to 'lib/class/xmlrpcclient.class.php')
-rw-r--r-- | lib/class/xmlrpcclient.class.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/class/xmlrpcclient.class.php b/lib/class/xmlrpcclient.class.php index b35f2a27..49bf4439 100644 --- a/lib/class/xmlrpcclient.class.php +++ b/lib/class/xmlrpcclient.class.php @@ -51,7 +51,7 @@ class xmlRpcClient { // Build our key $timestamp = time(); - $handshake_key = hash('sha256',$timestamp . hash('sha256',$key)); + $handshake_key = hash('sha256',$timestamp . hash('sha256',$key)); $encoded_key = new XML_RPC_Value($handshake_key,'string'); $timestamp = new XML_RPC_Value($timestamp,'int'); |