Also check in cron for old php version

Fixes #2756

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
This commit is contained in:
Roeland Jago Douma 2016-12-19 15:29:52 +01:00
parent 9b71ee27ff
commit 1741fe0310
No known key found for this signature in database
GPG Key ID: F941078878347C0C
1 changed files with 7 additions and 0 deletions

View File

@ -30,6 +30,13 @@
*
*/
// Show warning if a PHP version below 5.6.0 is used
if (version_compare(PHP_VERSION, '5.6.0') === -1) {
echo 'This version of Nextcloud requires at least PHP 5.6.0<br/>';
echo 'You are currently running ' . PHP_VERSION . '. Please update your PHP version.';
return;
}
try {
require_once __DIR__ . '/lib/base.php';