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 cd56302 commit 5eca240Copy full SHA for 5eca240
lib/versioncheck.php
@@ -22,10 +22,10 @@
22
* along with this program. If not, see <http://www.gnu.org/licenses/>.
23
*
24
*/
25
-// Show warning if a PHP version below 7.2 is used,
26
-if (PHP_VERSION_ID < 70200) {
+// Show warning if a PHP version below 7.3 is used,
+if (PHP_VERSION_ID < 70300) {
27
http_response_code(500);
28
- echo 'This version of Nextcloud requires at least PHP 7.2<br/>';
+ echo 'This version of Nextcloud requires at least PHP 7.3<br/>';
29
echo 'You are currently running ' . PHP_VERSION . '. Please update your PHP version.';
30
exit(-1);
31
}
0 commit comments