Commit bf16dbc6 authored by Manfred Kutas's avatar Manfred Kutas

ZP-963 Remove PHP 7 is unsupported check from zpush.php.

Released under the Affero GNU General Public License (AGPL) version 3.
parent 86c1e90b
...@@ -209,11 +209,6 @@ class ZPush { ...@@ -209,11 +209,6 @@ class ZPush {
throw new FatalException("The configured PHP version is too old. Please make sure at least PHP 5.4 is used."); throw new FatalException("The configured PHP version is too old. Please make sure at least PHP 5.4 is used.");
} }
// TODO remove for ZP-804
if (version_compare(phpversion(), '7.0.0', '>=')) {
throw new FatalException("The configured PHP version is too new. PHP 7 is not yet supported. We are working on it!");
}
// some basic checks // some basic checks
if (!defined('BASE_PATH')) if (!defined('BASE_PATH'))
throw new FatalMisconfigurationException("The BASE_PATH is not configured. Check if the config.php file is in place."); throw new FatalMisconfigurationException("The BASE_PATH is not configured. Check if the config.php file is in place.");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment