From: Philipp Holzer Date: Mon, 9 Jul 2018 20:10:35 +0000 (+0200) Subject: bugfix isempty... X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=a84c94e94b8322695967c60bf1f2b69663f09846;p=friendica.git bugfix isempty... --- diff --git a/src/Core/System.php b/src/Core/System.php index 2fcbee14f5..46d1b34e55 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()); }