Removed old todo's
parent
5b0fba63aa
commit
b3de673c6a
|
@ -76,7 +76,6 @@ class InstallController extends AbstractController {
|
|||
$this->addMessage('PHP version: '.$phpv, 'success');
|
||||
}
|
||||
if (version_compare(PHP_RELEASE_VERSION, '7', '<')) {
|
||||
// TODO PHP 5 has reached the end of life. Add warning for those who still use it.
|
||||
$this->addMessage('PHP 5 reaches the end of life (January 1, 2019), please update to PHP 7. PHP supported versions can be found <a href="https://secure.php.net/supported-versions.php" target="_blank" rel="noopener">here</a>.', 'warning');
|
||||
}
|
||||
if (!function_exists('curl_init')) {
|
||||
|
|
|
@ -43,7 +43,6 @@ class StatusController extends AbstractServerController {
|
|||
|
||||
/**
|
||||
* Prepare the template to show a list of all servers
|
||||
* @todo move the background colurs to the config
|
||||
*/
|
||||
protected function executeIndex() {
|
||||
// set background color to black
|
||||
|
|
|
@ -77,7 +77,6 @@ class Installer {
|
|||
}
|
||||
|
||||
// different DB version, check if the version requires any changes
|
||||
// @todo this is currently a manual check for each version, similar to upgrade().. not a clean way
|
||||
if (version_compare($version_db, PSM_VERSION, '<')) {
|
||||
return true;
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue