diff options
author | Xinchen Hui <laruence@php.net> | 2015-06-14 13:44:39 +0800 |
---|---|---|
committer | Xinchen Hui <laruence@php.net> | 2015-06-14 13:44:39 +0800 |
commit | c196e86520bc2634ee11ba3d7cd404bc437eb182 (patch) | |
tree | 37ffbd01dcc98cbf58d347e5803fd19dc8b49f63 /ext/hash | |
parent | dc37d3e8c2248f4f4437547bc7225276e22ea41d (diff) | |
download | php-git-c196e86520bc2634ee11ba3d7cd404bc437eb182.tar.gz |
Fixed skipf
Diffstat (limited to 'ext/hash')
-rw-r--r-- | ext/hash/tests/skip_mhash.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/hash/tests/skip_mhash.inc b/ext/hash/tests/skip_mhash.inc index 17e5fe7f9e..608b557b28 100644 --- a/ext/hash/tests/skip_mhash.inc +++ b/ext/hash/tests/skip_mhash.inc @@ -1,5 +1,5 @@ <?php -if (!extension_loaded("mhash") || !function_exists("mhash")) { +if (!function_exists("mhash")) { die("skip mhash extension is not available"); } ?> |