diff options
author | Paul Arthur <paul.arthur@flowerysong.com> | 2011-11-30 15:04:21 -0500 |
---|---|---|
committer | Paul Arthur <paul.arthur@flowerysong.com> | 2011-11-30 15:04:21 -0500 |
commit | 79726ea541d638364493b144270d925d94c1cf4a (patch) | |
tree | fe7dec82a3ce25ea6dfc5d0ffa75f36c1291475f /lib | |
parent | 0752a680e8fb799d625b752e89be830e324b2c5a (diff) | |
download | ampache-79726ea541d638364493b144270d925d94c1cf4a.tar.gz ampache-79726ea541d638364493b144270d925d94c1cf4a.tar.bz2 ampache-79726ea541d638364493b144270d925d94c1cf4a.zip |
Remove dangling version test
Diffstat (limited to 'lib')
-rw-r--r-- | lib/debug.lib.php | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/debug.lib.php b/lib/debug.lib.php index 2d917ea4..e6636976 100644 --- a/lib/debug.lib.php +++ b/lib/debug.lib.php @@ -89,11 +89,6 @@ function check_php_ver($level=0) { return false; } - // Poor windows users if only their OS wasn't behind the times - if (strtoupper(substr(PHP_OS,0,3)) == 'WIN' AND floatval(phpversion()) < 5.3) { - return false; - } - // Make sure that they have the sha256() algo installed if (!function_exists('hash_algos')) { return false; } $algos = hash_algos(); |