Skip to content
Snippets Groups Projects
Commit dc9c5ecd authored by Lukas Reschke's avatar Lukas Reschke
Browse files

Show warning for PHP versions older than 5.4.0

We can't check the PHP version in the installer since base.php already used 5.4 syntax. Thus for a better UX we show a simple warning instead of a fatal PHP error.
parent 9adff770
No related branches found
No related tags found
No related merge requests found
......@@ -21,6 +21,14 @@
*
*/
// 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<br/>';
echo 'You are currently running ' . PHP_VERSION . '. Please update your PHP version.';
return;
}
try {
require_once 'lib/base.php';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment