diff options
author | zotlabs <mike@macgirvin.com> | 2017-12-16 15:14:28 -0800 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2017-12-17 10:58:14 +0100 |
commit | fca405741ac0043068ed4d2f4b04c92dc74ff9c9 (patch) | |
tree | 9b15f63943aa0f1d2651ea3bbca0f152d4fdb0fe | |
parent | 715847bf748a773b3326e68e94935efdf178f5fe (diff) | |
download | volse-hubzilla-fca405741ac0043068ed4d2f4b04c92dc74ff9c9.tar.gz volse-hubzilla-fca405741ac0043068ed4d2f4b04c92dc74ff9c9.tar.bz2 volse-hubzilla-fca405741ac0043068ed4d2f4b04c92dc74ff9c9.zip |
reverse the logic so we zidify by default
-rw-r--r-- | include/text.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/text.php b/include/text.php index 02e2a10b5..107efe0cb 100644 --- a/include/text.php +++ b/include/text.php @@ -1754,10 +1754,10 @@ function get_plink($item,$conversation_mode = true) { else $key = 'llink'; - $zidify = false; + $zidify = true; - if(array_key_exists('author',$item) && $item['author']['xchan_network'] === 'zot') - $zidify = true; + if(array_key_exists('author',$item) && $item['author']['xchan_network'] !== 'zot') + $zidify = false; if(x($item,$key)) { return array( |