HHVM does not like it when we call an non-existent parent constructor.

This commit is contained in:
Andreas Fischer 2014-06-16 22:18:19 +02:00
parent 765154f54e
commit b56c6a535e

View File

@ -192,7 +192,7 @@ class Crypt_TripleDES extends Crypt_DES
// In case of CRYPT_DES_MODE_3CBC, we init as CRYPT_DES_MODE_CBC
// and additional flag us internally as 3CBC
case CRYPT_DES_MODE_3CBC:
parent::Crypt_DES(CRYPT_DES_MODE_CBC);
parent::Crypt_Base(CRYPT_DES_MODE_CBC);
$this->mode_3cbc = true;
// This three $des'es will do the 3CBC work (if $key > 64bits)
@ -209,7 +209,7 @@ class Crypt_TripleDES extends Crypt_DES
break;
// If not 3CBC, we init as usual
default:
parent::Crypt_DES($mode);
parent::Crypt_Base($mode);
}
}