diff options
author | friendica <info@friendica.com> | 2013-10-29 18:46:51 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-10-29 18:46:51 -0700 |
commit | 75ba7ae1166562f48356b445b10cce2e57a42f4a (patch) | |
tree | 24b3cc9876ae5eb248c95cf9f5f87a12ac0a08d6 /include/bbcode.php | |
parent | 5c98d5eaaed2cb342c7e823f5893c0d0d4e19de5 (diff) | |
download | volse-hubzilla-75ba7ae1166562f48356b445b10cce2e57a42f4a.tar.gz volse-hubzilla-75ba7ae1166562f48356b445b10cce2e57a42f4a.tar.bz2 volse-hubzilla-75ba7ae1166562f48356b445b10cce2e57a42f4a.zip |
rpost bbcode tag
Diffstat (limited to 'include/bbcode.php')
-rw-r--r-- | include/bbcode.php | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/include/bbcode.php b/include/bbcode.php index 756d73aba..de8a34b80 100644 --- a/include/bbcode.php +++ b/include/bbcode.php @@ -2,7 +2,7 @@ require_once("include/oembed.php"); require_once('include/event.php'); - +require_once('include/zot.php'); function tryoembed($match) { @@ -178,6 +178,11 @@ function bb_ShareAttributesSimple($match) { return($text); } +function rpost_callback($match) { + return str_replace($match[0],get_rpost_path(get_app()->get_observer()) . '&body=' . urlencode($match[1]),$match[0]); +} + + // BBcode 2 HTML was written by WAY2WEB.net // extended to work with Mistpark/Friendica/Red - Mike Macgirvin @@ -220,13 +225,15 @@ function bbcode($Text,$preserve_nl = false, $tryoembed = true) { // process [observer] tags before we do anything else because we might // be stripping away stuff that then doesn't need to be worked on anymore $observer = $a->get_observer(); - if (strpos($Text,'[/observer]') !== false) { + if ((strpos($Text,'[/observer]') !== false) || (strpos($Text,'[/rpost]') !== false)) { if ($observer) { $Text = preg_replace("/\[observer\=1\](.*?)\[\/observer\]/ism", '$1', $Text); $Text = preg_replace("/\[observer\=0\].*?\[\/observer\]/ism", '', $Text); + $Text = preg_replace_callback("/\[rpost\](.*?)\[\/rpost\]/ism", 'rpost_callback', $Text); } else { $Text = preg_replace("/\[observer\=1\].*?\[\/observer\]/ism", '', $Text); $Text = preg_replace("/\[observer\=0\](.*?)\[\/observer\]/ism", '$1', $Text); + $Text = preg_replace("/\[rpost\](.*?)\[\/rpost\]/ism", '', $Text); } } @@ -266,7 +273,7 @@ function bbcode($Text,$preserve_nl = false, $tryoembed = true) { $Text = str_replace('[observer.url]',$observer['xchan_url'], $Text); $Text = str_replace('[observer.name]',$observer['xchan_name'], $Text); $Text = str_replace('[observer.address]',$observer['xchan_addr'], $Text); - $Text = str_replace('[observer.photo]','[zmg]'.$observer['xchan_photo_l'].'[/zmg]', $Text); + $Text = str_replace('[observer.photo]','[zmg]'.$observer['xchan_photo_l'].'[/zmg]', $Text); } else { $Text = str_replace('[observer.baseurl]', '', $Text); $Text = str_replace('[observer.url]','', $Text); |