Active
Project:
Authorize Donate
Version:
6.x-1.0
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
2 May 2012 at 13:51 UTC
Updated:
2 May 2012 at 13:51 UTC
PHP 5.3 no longer supports the mhash function, so you need to change line 230 as follows:
Old:
return (bin2hex (mhash(MHASH_MD5, $data, $key)));
New:
return (hash_hmac("md5", $data, $key));