1
0
Fork 0
mirror of https://github.com/Yetangitu/ampache synced 2025-10-05 10:49:37 +02:00

fix version check in debug lib

This commit is contained in:
Karl 'vollmerk' Vollmer 2009-03-03 01:12:04 +00:00
parent 8a0f5b1cc7
commit 50e874b586

View file

@ -76,7 +76,7 @@ function check_database_inserted($dbh,$db_name) {
*/
function check_php_ver($level=0) {
if (strcmp('5.1.2',phpversion()) > 0) {
if (floatval(phpversion()) < 5.1) {
return false;
}