aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-09-24 05:20:29 -0700
committerfriendica <info@friendica.com>2013-09-24 05:20:29 -0700
commitd4ea56a77ef408347a9d73b36e8066334b8835ea (patch)
tree8fd5a50d2c14e93736d33e7a1b5858e94371ad5d /include
parent1f916adfb889c877ff975be75274fb7f3ac37b1f (diff)
downloadvolse-hubzilla-d4ea56a77ef408347a9d73b36e8066334b8835ea.tar.gz
volse-hubzilla-d4ea56a77ef408347a9d73b36e8066334b8835ea.tar.bz2
volse-hubzilla-d4ea56a77ef408347a9d73b36e8066334b8835ea.zip
reduce susceptibility to bleichenberger attack
Diffstat (limited to 'include')
-rwxr-xr-xinclude/text.php2
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'),
);
}