We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ff328a commit 6df9090Copy full SHA for 6df9090
1 file changed
console.php
@@ -31,10 +31,10 @@
31
32
define('OC_CONSOLE', 1);
33
34
-// Show warning if a PHP version below 5.4.0 is used, this has to happen here
35
-// because base.php will already use 5.4 syntax.
36
-if (version_compare(PHP_VERSION, '5.4.0') === -1) {
37
- echo 'This version of ownCloud requires at least PHP 5.4.0'.PHP_EOL;
+// Show warning if a PHP version below 5.6.0 is used, this has to happen here
+// because base.php will already use 5.6 syntax.
+if (version_compare(PHP_VERSION, '5.6.0') === -1) {
+ echo 'This version of Nextcloud requires at least PHP 5.6.0'.PHP_EOL;
38
echo 'You are currently running ' . PHP_VERSION . '. Please update your PHP version.'.PHP_EOL;
39
return;
40
}
0 commit comments