diff options
author | Andrey Andreev <narf@devilix.net> | 2014-02-18 23:45:11 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2014-02-18 23:45:11 +0100 |
commit | fed4ab48a3c99140ecf904fc68ce6b84185bbb67 (patch) | |
tree | 2b8392b394e8f1a21b00853df4150061af8f16c5 /system/core | |
parent | ac8ac6a90812d3d2c880efe00c2293aef6fd8030 (diff) |
Don't load password hashing compat for HHVM
Diffstat (limited to 'system/core')
-rw-r--r-- | system/core/compat/password.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/core/compat/password.php b/system/core/compat/password.php index 92fdedb99..a9355d5d0 100644 --- a/system/core/compat/password.php +++ b/system/core/compat/password.php @@ -39,7 +39,7 @@ defined('BASEPATH') OR exit('No direct script access allowed'); // ------------------------------------------------------------------------ -if (is_php('5.5') OR ! is_php('5.3.7') OR ! defined('CRYPT_BLOWFISH') OR CRYPT_BLOWFISH !== 1) +if (is_php('5.5') OR ! is_php('5.3.7') OR ! defined('CRYPT_BLOWFISH') OR CRYPT_BLOWFISH !== 1 OR defined('HHVM_VERSION')) { return; } |