Fix function_exists() call.
authorMichael M Slusarz <slusarz@curecanti.org>
Thu, 26 Aug 2010 03:47:23 +0000 (21:47 -0600)
committerMichael M Slusarz <slusarz@curecanti.org>
Thu, 26 Aug 2010 03:47:23 +0000 (21:47 -0600)
framework/Net_IMSP/IMSP/Auth/cram_md5.php

index b80569b..2d27ae4 100644 (file)
@@ -88,7 +88,7 @@ class Net_IMSP_Auth_cram_md5 extends Net_IMSP_Auth {
      */
     function _hmac($key, $data)
     {
-        if (function_exists(hash_hmac)) {
+        if (function_exists('hash_hmac')) {
             return hash_hmac('md5', $data, $key);
         }