diff options
author | friendica <info@friendica.com> | 2012-06-12 16:17:34 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-06-12 16:17:34 -0700 |
commit | 832d9eeaaf7c439f3f8802d35e0e4a40509bddf5 (patch) | |
tree | 01e7fbd804b1972076492031da45687033a50f21 /include/text.php | |
parent | 08b3126dae0cb93c3ea5ae47629ab8e6f7c37143 (diff) | |
download | volse-hubzilla-832d9eeaaf7c439f3f8802d35e0e4a40509bddf5.tar.gz volse-hubzilla-832d9eeaaf7c439f3f8802d35e0e4a40509bddf5.tar.bz2 volse-hubzilla-832d9eeaaf7c439f3f8802d35e0e4a40509bddf5.zip |
more fixes
Diffstat (limited to 'include/text.php')
-rw-r--r-- | include/text.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/text.php b/include/text.php index f408e0df6..8948bf8c4 100644 --- a/include/text.php +++ b/include/text.php @@ -1059,7 +1059,7 @@ function feed_salmonlinks($nick) { if(! function_exists('get_plink')) { function get_plink($item) { $a = get_app(); - if (x($item,'plink') && (! $item['private'])){ + if (x($item,'plink') && ((! $item['private']) || ($item['network'] === NETWORK_FEED))){ return array( 'href' => $item['plink'], 'title' => t('link to source'), |