From 776f5bcd345b77b05cbb9cd3fd234f3ba40eac25 Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Thu, 15 Dec 2016 16:08:04 +0100 Subject: Don't disable apps on update if PHP >= 7.0.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit When PHP in a version higher than 7.0.0 is used we catch fatal exceptions in app.php and gracefully already disable the app. There is thus no need to also disable the apps on updates. This has been requested by Jan to fix because that is "the most annoying thing ever" :TM:. – I'd say we give it a try and if that causes problems in the future we can consider alternative approaches. Signed-off-by: Lukas Reschke --- version.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'version.php') diff --git a/version.php b/version.php index 3703bbcb09e..6db26c8c66c 100644 --- a/version.php +++ b/version.php @@ -26,7 +26,7 @@ // between betas, final and RCs. This is _not_ the public version number. Reset minor/patchlevel // when updating major/minor version number. -$OC_Version = array(12, 0, 0, 10); +$OC_Version = array(12, 0, 0, 11); // The human readable string $OC_VersionString = '12.0 alpha'; -- cgit v1.2.3