[Pkg-owncloud-commits] [owncloud] 52/122: Remove PHP 5.4 warning in checkSetup
David Prévot
taffit at moszumanska.debian.org
Sat May 9 00:00:12 UTC 2015
This is an automated email from the git hooks/post-receive script.
taffit pushed a commit to branch stable8
in repository owncloud.
commit 64393b4c033fb842821da00e890415f3e08f18ea
Author: Lukas Reschke <lukas at owncloud.com>
Date: Mon May 4 14:42:22 2015 +0200
Remove PHP 5.4 warning in checkSetup
This is catched in index.php as older PHP versions will never execute the code path until there due to 5.4 syntax changes.
---
lib/private/util.php | 9 ---------
1 file changed, 9 deletions(-)
diff --git a/lib/private/util.php b/lib/private/util.php
index f4624cf..177934a 100644
--- a/lib/private/util.php
+++ b/lib/private/util.php
@@ -739,15 +739,6 @@ class OC_Util {
$webServerRestart = true;
}
- if (version_compare(phpversion(), '5.4.0', '<')) {
- $errors[] = array(
- 'error' => $l->t('PHP %s or higher is required.', '5.4.0'),
- 'hint' => $l->t('Please ask your server administrator to update PHP to the latest version.'
- . ' Your PHP version is no longer supported by ownCloud and the PHP community.')
- );
- $webServerRestart = true;
- }
-
/**
* PHP 5.6 ships with a PHP setting which throws notices by default for a
* lot of endpoints. Thus we need to ensure that the value is set to -1
--
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