diff options
author | friendica <info@friendica.com> | 2013-11-10 14:15:57 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-11-10 14:15:57 -0800 |
commit | a6f37739c2af958c126eebb7bca1347679808765 (patch) | |
tree | f5c6772a25938f2ddd57a65a33d8f82c450e3f05 | |
parent | 97a109eed4e034d587b0d64d0f70f6b8a9380217 (diff) | |
download | volse-hubzilla-a6f37739c2af958c126eebb7bca1347679808765.tar.gz volse-hubzilla-a6f37739c2af958c126eebb7bca1347679808765.tar.bz2 volse-hubzilla-a6f37739c2af958c126eebb7bca1347679808765.zip |
too much privacy on get_plink() which is left over from Friendica days
-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 985262fe8..fc70e3509 100755 --- a/include/text.php +++ b/include/text.php @@ -1346,7 +1346,7 @@ function get_plink($item,$mode) { else $key = 'llink'; - if (x($item,$key) && ($item['item_private'] != 1)) { + if(x($item,$key)) { return array( 'href' => zid($item[$key]), 'title' => t('link to source'), |