From dd2519b150dfbb1415677e4b78d1aef4ea80cf45 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 7 Oct 2016 13:24:37 +0200 Subject: owncloud: 9.1.1 (backported from Fedora, thanks James) --- owncloud-9.1.1-dont_warn_php54_eol.patch | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 owncloud-9.1.1-dont_warn_php54_eol.patch (limited to 'owncloud-9.1.1-dont_warn_php54_eol.patch') diff --git a/owncloud-9.1.1-dont_warn_php54_eol.patch b/owncloud-9.1.1-dont_warn_php54_eol.patch new file mode 100644 index 0000000..6772ec5 --- /dev/null +++ b/owncloud-9.1.1-dont_warn_php54_eol.patch @@ -0,0 +1,14 @@ +--- ./settings/Controller/CheckSetupController.php.old 2016-10-07 13:04:26.349194620 +0200 ++++ ./settings/Controller/CheckSetupController.php 2016-10-07 13:04:56.642349253 +0200 +@@ -214,10 +214,7 @@ + private function isPhpSupported() { + $eol = false; + +- //PHP 5.4 is EOL on 14 Sep 2015 +- if (version_compare(PHP_VERSION, '5.5.0') === -1) { +- $eol = true; +- } ++ // Red Hat provide support for the system PHP so never eol + + return ['eol' => $eol, 'version' => PHP_VERSION]; + } -- cgit