aboutsummaryrefslogtreecommitdiffstats
path: root/mod
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-10-08 18:04:12 +1100
committerfriendica <info@friendica.com>2012-10-08 18:04:12 +1100
commitef22c1a9b3d4c452144bce7b94f31050622e17d6 (patch)
treee507cfa953469a48c9c65729893d91cb5673d842 /mod
parent3c04676a32b048677813c1d8a4c525963a7b2f01 (diff)
downloadvolse-hubzilla-ef22c1a9b3d4c452144bce7b94f31050622e17d6.tar.gz
volse-hubzilla-ef22c1a9b3d4c452144bce7b94f31050622e17d6.tar.bz2
volse-hubzilla-ef22c1a9b3d4c452144bce7b94f31050622e17d6.zip
prevent tag recursion on shared posts
Diffstat (limited to 'mod')
-rw-r--r--mod/share.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/share.php b/mod/share.php
index 761220ad7..8d9cd16ea 100644
--- a/mod/share.php
+++ b/mod/share.php
@@ -18,14 +18,14 @@ function share_init(&$a) {
if(! count($r) || ($r[0]['private'] == 1))
killme();
- $o = '';
+ $o = '[share]';
$o .= "\xE2\x99\xb2" . ' [url=' . $r[0]['author-link'] . ']' . $r[0]['author-name'] . '[/url]' . "\n";
if($r[0]['title'])
$o .= '[b]' . $r[0]['title'] . '[/b]' . "\n";
$o .= $r[0]['body'] . "\n" ;
- $o .= (($r[0]['plink']) ? '[url=' . $r[0]['plink'] . ']' . t('link') . '[/url]' . "\n" : '');
+ $o .= (($r[0]['plink']) ? '[url=' . $r[0]['plink'] . ']' . t('link') . '[/url]' . "\n" : '') . '[/share]';
echo $o;
killme();