]> git.mxchange.org Git - friendica.git/commitdiff
bugfix isempty...
authorPhilipp Holzer <admin@philipp.info>
Mon, 9 Jul 2018 20:10:35 +0000 (22:10 +0200)
committerPhilipp Holzer <admin@philipp.info>
Mon, 9 Jul 2018 20:10:35 +0000 (22:10 +0200)
src/Core/System.php

index 2fcbee14f5eb543076c0bb0727c8bb8316c44e86..46d1b34e555a6dfe0bf802e7ab3a13593f9f4ef1 100644 (file)
@@ -186,7 +186,7 @@ EOT;
        {
                if (is_bool($prefix) && !$prefix) {
                        $prefix = '';
-               } elseif (!empty($prefix)) {
+               } elseif (empty($prefix)) {
                        $prefix = hash('crc32', self::getApp()->get_hostname());
                }