Completed
Push — master ( fe45db...6e56a7 )
by Morris
28:18 queued 15:12
created
lib/versioncheck.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@  discard block
 block discarded – undo
5 5
 if (version_compare(PHP_VERSION, '7.0') === -1) {
6 6
 	http_response_code(500);
7 7
 	echo 'This version of Nextcloud requires at least PHP 7.0<br/>';
8
-	echo 'You are currently running ' . PHP_VERSION . '. Please update your PHP version.';
8
+	echo 'You are currently running '.PHP_VERSION.'. Please update your PHP version.';
9 9
 	exit(-1);
10 10
 }
11 11
 
@@ -13,6 +13,6 @@  discard block
 block discarded – undo
13 13
 if (version_compare(PHP_VERSION, '7.4.0') !== -1) {
14 14
 	http_response_code(500);
15 15
 	echo 'This version of Nextcloud is not compatible with > PHP 7.3.<br/>';
16
-	echo 'You are currently running ' . PHP_VERSION . '.';
16
+	echo 'You are currently running '.PHP_VERSION.'.';
17 17
 	exit(-1);
18 18
 }
Please login to merge, or discard this patch.