mirror of
https://github.com/friendica/friendica
synced 2024-11-18 14:23:41 +00:00
bugfix isempty...
This commit is contained in:
parent
d1eeaeead9
commit
a84c94e94b
1 changed files with 1 additions and 1 deletions
|
@ -186,7 +186,7 @@ EOT;
|
|||
{
|
||||
if (is_bool($prefix) && !$prefix) {
|
||||
$prefix = '';
|
||||
} elseif (!empty($prefix)) {
|
||||
} elseif (empty($prefix)) {
|
||||
$prefix = hash('crc32', self::getApp()->get_hostname());
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue