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

Use latest php-cs-fixer version

This commit is contained in:
Afterster 2015-07-29 21:59:12 +02:00
parent 356b8f1e43
commit 47a6585c88
298 changed files with 7977 additions and 4559 deletions

View file

@ -114,12 +114,11 @@ function check_config_values($conf)
}
if (isset($conf['debug'])) {
if (!isset($conf['log_path'])) {
return false;
return false;
}
}
return true;
} // check_config_values
/**
@ -138,7 +137,6 @@ function check_php_memory()
}
return true;
} // check_php_memory
/**
@ -150,7 +148,6 @@ function check_php_timelimit()
{
$current = intval(ini_get('max_execution_time'));
return ($current >= 60 || $current == 0);
} // check_php_timelimit
/**