From 23645d8de985dddfa1c2519634063eb8f3fdc223 Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Wed, 25 Aug 2010 21:47:23 -0600 Subject: [PATCH] Fix function_exists() call. --- framework/Net_IMSP/IMSP/Auth/cram_md5.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/Net_IMSP/IMSP/Auth/cram_md5.php b/framework/Net_IMSP/IMSP/Auth/cram_md5.php index b80569b25..2d27ae45c 100644 --- a/framework/Net_IMSP/IMSP/Auth/cram_md5.php +++ b/framework/Net_IMSP/IMSP/Auth/cram_md5.php @@ -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); } -- 2.11.0