aboutsummaryrefslogtreecommitdiffstats
path: root/include/items.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2014-02-16 14:13:26 -0800
committerfriendica <info@friendica.com>2014-02-16 14:13:26 -0800
commitebd52368bb134e57a54d853732b5b4970a8ce02b (patch)
tree3b950917be780242a2e5ae64c9b26f42e170a637 /include/items.php
parentd9e4f634665ec4da69b5af230f45f2a0e9688a1b (diff)
downloadvolse-hubzilla-ebd52368bb134e57a54d853732b5b4970a8ce02b.tar.gz
volse-hubzilla-ebd52368bb134e57a54d853732b5b4970a8ce02b.tar.bz2
volse-hubzilla-ebd52368bb134e57a54d853732b5b4970a8ce02b.zip
strip hard-wired zids from posted links as they will have the wrong identity when somebody tries to view the link
Diffstat (limited to 'include/items.php')
-rwxr-xr-xinclude/items.php11
1 files changed, 10 insertions, 1 deletions
diff --git a/include/items.php b/include/items.php
index 3c10b8f5c..9bcdd7d0b 100755
--- a/include/items.php
+++ b/include/items.php
@@ -145,7 +145,9 @@ function can_comment_on_post($observer_xchan,$item) {
* @function red_zrl_callback
* preg_match function when fixing 'naked' links in mod item.php
* Check if we've got a hubloc for the site and use a zrl if we do, a url if we don't.
- *
+ * Remove any existing zid= param which may have been pasted by mistake - and will have
+ * the author's credentials. zid's are dynamic and can't really be passed around like
+ * that.
*/
@@ -159,6 +161,13 @@ function red_zrl_callback($matches) {
if($r)
$zrl = true;
}
+
+ $t = strip_zids($matches[2]);
+ if($t !== $matches[2]) {
+ $zrl = true;
+ $matches[2] = $t;
+ }
+
if($matches[1] === '#^')
$matches[1] = '';
if($zrl)