1
0
mirror of https://github.com/danog/tgseclib.git synced 2024-11-26 20:24:39 +01:00

Hash: fix E_NOTICE with PHP4-style constructor

This commit is contained in:
terrafrost 2016-11-17 20:54:38 -06:00
parent b99345704a
commit 99a2127856

View File

@ -178,7 +178,7 @@ class Crypt_Hash
*/
function Crypt_Hash($hash = 'sha1')
{
$this->__construct($mode);
$this->__construct($hash);
}
/**