Merge pull request #5792 from nextcloud/stable12-prevent-php7.2-usage
[stable12] Show warning if PHP 7.2 is used
This commit is contained in:
commit
4165d5bca6
|
@ -39,6 +39,14 @@ if (version_compare(PHP_VERSION, '5.6.0') === -1) {
|
|||
return;
|
||||
}
|
||||
|
||||
// Show warning if PHP 7.2 is used as Nextcloud is not compatible with PHP 7.2 for now
|
||||
// @see https://github.com/nextcloud/server/pull/5791
|
||||
if (version_compare(PHP_VERSION, '7.2.0') !== -1) {
|
||||
echo 'This version of Nextcloud is not compatible with PHP 7.2.<br/>';
|
||||
echo 'You are currently running ' . PHP_VERSION . '.';
|
||||
return;
|
||||
}
|
||||
|
||||
function exceptionHandler($exception) {
|
||||
echo "An unhandled exception has been thrown:" . PHP_EOL;
|
||||
echo $exception;
|
||||
|
|
|
@ -33,6 +33,14 @@ if (version_compare(PHP_VERSION, '5.6.0') === -1) {
|
|||
return;
|
||||
}
|
||||
|
||||
// Show warning if PHP 7.2 is used as Nextcloud is not compatible with PHP 7.2 for now
|
||||
// @see https://github.com/nextcloud/server/pull/5791
|
||||
if (version_compare(PHP_VERSION, '7.2.0') !== -1) {
|
||||
echo 'This version of Nextcloud is not compatible with PHP 7.2.<br/>';
|
||||
echo 'You are currently running ' . PHP_VERSION . '.';
|
||||
return;
|
||||
}
|
||||
|
||||
try {
|
||||
|
||||
require_once __DIR__ . '/lib/base.php';
|
||||
|
|
Loading…
Reference in New Issue