Removed old todo's

pull/703/head^2
TimZ99 2019-05-18 01:25:34 +02:00
parent 5b0fba63aa
commit b3de673c6a
No known key found for this signature in database
GPG Key ID: 4D8268DC68E8339D
3 changed files with 2 additions and 5 deletions

View File

@ -76,7 +76,6 @@ class InstallController extends AbstractController {
$this->addMessage('PHP version: '.$phpv, 'success'); $this->addMessage('PHP version: '.$phpv, 'success');
} }
if (version_compare(PHP_RELEASE_VERSION, '7', '<')) { 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'); $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')) { if (!function_exists('curl_init')) {

View File

@ -43,7 +43,6 @@ class StatusController extends AbstractServerController {
/** /**
* Prepare the template to show a list of all servers * Prepare the template to show a list of all servers
* @todo move the background colurs to the config
*/ */
protected function executeIndex() { protected function executeIndex() {
// set background color to black // set background color to black

View File

@ -77,7 +77,6 @@ class Installer {
} }
// different DB version, check if the version requires any changes // 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, '<')) { if (version_compare($version_db, PSM_VERSION, '<')) {
return true; return true;
} else { } else {