From de492a129186f5e1d0d1aad4173950b52ee778f3 Mon Sep 17 00:00:00 2001 From: Marius Burkard Date: Wed, 23 Dec 2015 18:20:39 +0100 Subject: [PATCH] One-liner is not good to read. --- install/lib/installer_base.lib.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/install/lib/installer_base.lib.php b/install/lib/installer_base.lib.php index a3640ab182..fcbab596fb 100644 --- a/install/lib/installer_base.lib.php +++ b/install/lib/installer_base.lib.php @@ -133,7 +133,8 @@ class installer_base { //** Detect PHP-Version public function get_php_version() { - if(version_compare(PHP_VERSION, $this->min_php, '<')) return false; else return true; + if(version_compare(PHP_VERSION, $this->min_php, '<')) return false; + else return true; } //** Detect installed applications @@ -2743,4 +2744,4 @@ Email Address []: } -?> +?> \ No newline at end of file -- GitLab