bugfix isempty...

This commit is contained in:
Philipp Holzer 2018-07-09 22:10:35 +02:00
parent d1eeaeead9
commit a84c94e94b
No known key found for this signature in database
GPG Key ID: 58160D7D6AF942B6
1 changed files with 1 additions and 1 deletions

View 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());
}