summaryrefslogtreecommitdiffstats
path: root/lib/debug.lib.php
diff options
context:
space:
mode:
authorPaul Arthur <paul.arthur@flowerysong.com>2011-11-30 15:04:21 -0500
committerPaul Arthur <paul.arthur@flowerysong.com>2011-11-30 15:04:21 -0500
commit79726ea541d638364493b144270d925d94c1cf4a (patch)
treefe7dec82a3ce25ea6dfc5d0ffa75f36c1291475f /lib/debug.lib.php
parent0752a680e8fb799d625b752e89be830e324b2c5a (diff)
downloadampache-79726ea541d638364493b144270d925d94c1cf4a.tar.gz
ampache-79726ea541d638364493b144270d925d94c1cf4a.tar.bz2
ampache-79726ea541d638364493b144270d925d94c1cf4a.zip
Remove dangling version test
Diffstat (limited to 'lib/debug.lib.php')
-rw-r--r--lib/debug.lib.php5
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();