From a84c94e94b8322695967c60bf1f2b69663f09846 Mon Sep 17 00:00:00 2001 From: Philipp Holzer Date: Mon, 9 Jul 2018 22:10:35 +0200 Subject: [PATCH] bugfix isempty... --- src/Core/System.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Core/System.php b/src/Core/System.php index 2fcbee14f..46d1b34e5 100644 --- a/src/Core/System.php +++ b/src/Core/System.php @@ -186,7 +186,7 @@ EOT; { if (is_bool($prefix) && !$prefix) { $prefix = ''; - } elseif (!empty($prefix)) { + } elseif (empty($prefix)) { $prefix = hash('crc32', self::getApp()->get_hostname()); }