aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorAndrew Manning <andrew@reticu.li>2016-11-27 16:46:24 -0700
committerAndrew Manning <andrew@reticu.li>2016-11-27 16:46:24 -0700
commit678239424a8c62fdd6cabc47d12ae0ea1fac9d6a (patch)
tree60b1c332de8d15c77920c19a1c44bea70d18bbde /include
parent369dc295b12bc3fc4cc2ab50727bea277a44d91c (diff)
downloadvolse-hubzilla-678239424a8c62fdd6cabc47d12ae0ea1fac9d6a.tar.gz
volse-hubzilla-678239424a8c62fdd6cabc47d12ae0ea1fac9d6a.tar.bz2
volse-hubzilla-678239424a8c62fdd6cabc47d12ae0ea1fac9d6a.zip
Integrating lots of member guide content
Diffstat (limited to 'include')
-rw-r--r--include/bbcode.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/bbcode.php b/include/bbcode.php
index d6bc53d12..1aabbc129 100644
--- a/include/bbcode.php
+++ b/include/bbcode.php
@@ -567,6 +567,9 @@ function parseIdentityAwareHTML($Text) {
$Text = str_replace('[observer.webname]','',$Text);
$Text = str_replace('[observer.photo]','', $Text);
}
+
+ $Text = str_replace(array('[baseurl]','[sitename]'),array(z_root(),get_config('system','sitename')),$Text);
+
return $Text;
}