diff options
author | zottel <github@zottel.net> | 2014-01-09 16:04:51 +0100 |
---|---|---|
committer | zottel <github@zottel.net> | 2014-01-09 16:04:51 +0100 |
commit | 5d83855afdd4ebf770462de7520e72ffb9c6c1c2 (patch) | |
tree | 26ac1fa983133c46f2bccc4b6a6faa119a254476 /include | |
parent | c0f6d7319524f8fb8bac764d6e2f306335d2266b (diff) | |
download | volse-hubzilla-5d83855afdd4ebf770462de7520e72ffb9c6c1c2.tar.gz volse-hubzilla-5d83855afdd4ebf770462de7520e72ffb9c6c1c2.tar.bz2 volse-hubzilla-5d83855afdd4ebf770462de7520e72ffb9c6c1c2.zip |
use plinks instead of llinks on network/ and channel/ pages, though not in
mode network-new (network/new and network/search)
Diffstat (limited to 'include')
-rwxr-xr-x | include/text.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/text.php b/include/text.php index 8b71fbddf..b47f0518a 100755 --- a/include/text.php +++ b/include/text.php @@ -1391,7 +1391,7 @@ function feed_salmonlinks($nick) { function get_plink($item,$mode) { $a = get_app(); - if($mode == 'display') + if(($mode == 'display') || ($mode == 'channel') || ($mode == 'network')) $key = 'plink'; else $key = 'llink'; |