diff options
author | zotlabs <mike@macgirvin.com> | 2017-12-16 15:14:28 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-12-16 15:14:28 -0800 |
commit | 59779f2a0e397984fdf0174818969c76a3639272 (patch) | |
tree | 9fbf7b679842d3f2333643feff5e7cc13e49da36 /include/text.php | |
parent | b1e191ce215e087c075df07e376dcacec152e398 (diff) | |
download | volse-hubzilla-59779f2a0e397984fdf0174818969c76a3639272.tar.gz volse-hubzilla-59779f2a0e397984fdf0174818969c76a3639272.tar.bz2 volse-hubzilla-59779f2a0e397984fdf0174818969c76a3639272.zip |
reverse the logic so we zidify by default
Diffstat (limited to 'include/text.php')
-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( |