summaryrefslogtreecommitdiffstats
path: root/owncloud-9.1.2-dont_warn_php54_eol.patch
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2016-12-16 09:20:00 +0100
committerRemi Collet <fedora@famillecollet.com>2016-12-16 09:20:00 +0100
commit6d524694b2b348da5c636308a40a57faf5031433 (patch)
treec97b75241d5435b3f69b73210bd1e002679a6b1f /owncloud-9.1.2-dont_warn_php54_eol.patch
parent65c880c95562b7ec1c8096cef0b25234b4954bbc (diff)
owncloud: sync latest Fedora changes
Diffstat (limited to 'owncloud-9.1.2-dont_warn_php54_eol.patch')
-rw-r--r--owncloud-9.1.2-dont_warn_php54_eol.patch18
1 files changed, 0 insertions, 18 deletions
diff --git a/owncloud-9.1.2-dont_warn_php54_eol.patch b/owncloud-9.1.2-dont_warn_php54_eol.patch
deleted file mode 100644
index efb3c80..0000000
--- a/owncloud-9.1.2-dont_warn_php54_eol.patch
+++ /dev/null
@@ -1,18 +0,0 @@
---- ./settings/Controller/CheckSetupController.php.old 2016-11-08 13:57:55.244970190 +0100
-+++ ./settings/Controller/CheckSetupController.php 2016-11-08 13:57:59.087987805 +0100
-@@ -347,13 +347,8 @@
- * @return bool
- */
- protected function isEndOfLive() {
-- $eol = false;
-
-- //PHP 5.4 is EOL on 14 Sep 2015
-- if (version_compare(PHP_VERSION, '5.5.0') === -1) {
-- $eol = true;
-- return $eol;
-- }
-- return $eol;
-+ // Red Hat provide support for the system PHP so never eol
-+ return false;
- }
- }