From de492a129186f5e1d0d1aad4173950b52ee778f3 Mon Sep 17 00:00:00 2001
From: Marius Burkard <m.burkard@pixcept.de>
Date: Wed, 23 Dec 2015 12:20:39 -0500
Subject: [PATCH] One-liner is not good to read.
---
install/lib/installer_base.lib.php | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/install/lib/installer_base.lib.php b/install/lib/installer_base.lib.php
index a3640ab..fcbab59 100644
--- a/install/lib/installer_base.lib.php
+++ b/install/lib/installer_base.lib.php
@@ -133,7 +133,8 @@
//** 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 @@
}
-?>
+?>
\ No newline at end of file
--
Gitblit v1.9.1