diff options
author | friendica <info@friendica.com> | 2013-09-24 05:20:29 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-09-24 05:20:29 -0700 |
commit | d4ea56a77ef408347a9d73b36e8066334b8835ea (patch) | |
tree | 8fd5a50d2c14e93736d33e7a1b5858e94371ad5d /include/text.php | |
parent | 1f916adfb889c877ff975be75274fb7f3ac37b1f (diff) | |
download | volse-hubzilla-d4ea56a77ef408347a9d73b36e8066334b8835ea.tar.gz volse-hubzilla-d4ea56a77ef408347a9d73b36e8066334b8835ea.tar.bz2 volse-hubzilla-d4ea56a77ef408347a9d73b36e8066334b8835ea.zip |
reduce susceptibility to bleichenberger attack
Diffstat (limited to 'include/text.php')
-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 40df8bd89..be5e2338d 100755 --- a/include/text.php +++ b/include/text.php @@ -1312,7 +1312,7 @@ function get_plink($item) { $a = get_app(); if (x($item,'plink') && ($item['item_private'] != 1)) { return array( - 'href' => $item['plink'], + 'href' => zid($item['plink']), 'title' => t('link to source'), ); } |