[Pkg-owncloud-commits] [owncloud] 09/34: Show warning for PHP versions older than 5.4.0

David Prévot taffit at moszumanska.debian.org
Wed Mar 11 15:49:36 UTC 2015


This is an automated email from the git hooks/post-receive script.

taffit pushed a commit to annotated tag v8.0.0
in repository owncloud.

commit dc9c5ecdbab5af860b8dce40918dd6b43a46825b
Author: Lukas Reschke <lukas at owncloud.com>
Date:   Thu Feb 5 11:41:00 2015 +0100

    Show warning for PHP versions older than 5.4.0
    
    We can't check the PHP version in the installer since base.php already used 5.4 syntax. Thus for a better UX we show a simple warning instead of a fatal PHP error.
---
 index.php | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/index.php b/index.php
index 88d5733..1ab350a 100644
--- a/index.php
+++ b/index.php
@@ -21,6 +21,14 @@
 *
 */
 
+// Show warning if a PHP version below 5.4.0 is used, this has to happen here
+// because base.php will already use 5.4 syntax.
+if (version_compare(PHP_VERSION, '5.4.0') === -1) {
+	echo 'This version of ownCloud requires at least PHP 5.4.0<br/>';
+	echo 'You are currently running ' . PHP_VERSION . '. Please update your PHP version.';
+	return;
+}
+
 try {
 	
 	require_once 'lib/base.php';

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/owncloud.git



More information about the Pkg-owncloud-commits mailing list