diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-05-08 23:48:31 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-05-08 23:48:31 +0200 |
commit | 57f3557486e765f8fa56e8c02ced4334cc88620b (patch) | |
tree | 4e4366e397f1b5adbb3c46ebc4dd39172a9e1eed | |
parent | c9921ec127ecf936a77d000754063120e1597932 (diff) | |
parent | 4c0a8d327d176e1d9861914f0e6254e022d7637b (diff) | |
download | nextcloud-server-57f3557486e765f8fa56e8c02ced4334cc88620b.tar.gz nextcloud-server-57f3557486e765f8fa56e8c02ced4334cc88620b.zip |
Merge pull request #16203 from owncloud/add-warning-for-people-that-cant-read
Add warning to OCC as well in case another PHP version is used there
-rw-r--r-- | console.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/console.php b/console.php index 2e55accab21..781905b04b5 100644 --- a/console.php +++ b/console.php @@ -28,6 +28,14 @@ use Symfony\Component\Console\Output\ConsoleOutput; define('OC_CONSOLE', 1); +// Show warning if a PHP version below 5.4.0 is used, this has to happen here +// because base.php will already use 5.4 syntax. +if (version_compare(PHP_VERSION, '5.4.0') === -1) { + echo 'This version of ownCloud requires at least PHP 5.4.0'.PHP_EOL; + echo 'You are currently running ' . PHP_VERSION . '. Please update your PHP version.'.PHP_EOL; + return; +} + try { require_once 'lib/base.php'; |