diff options
author | friendica <info@friendica.com> | 2014-11-24 18:02:36 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-11-24 18:02:36 -0800 |
commit | e9ba2ba600e5262d03300d37c8984a03808c47c3 (patch) | |
tree | 40fbb879286126d86ccc9eec12756a698fef30ea | |
parent | c279a8ad435dd81f625f40228d0991732e2d1a0a (diff) | |
download | volse-hubzilla-e9ba2ba600e5262d03300d37c8984a03808c47c3.tar.gz volse-hubzilla-e9ba2ba600e5262d03300d37c8984a03808c47c3.tar.bz2 volse-hubzilla-e9ba2ba600e5262d03300d37c8984a03808c47c3.zip |
theme the observer tags so they stick out like a sore thumb. Too much bad juju.
-rw-r--r-- | include/bbcode.php | 10 | ||||
-rw-r--r-- | view/theme/redbasic/css/style.css | 8 |
2 files changed, 14 insertions, 4 deletions
diff --git a/include/bbcode.php b/include/bbcode.php index 6b7217f91..5b7451a6b 100644 --- a/include/bbcode.php +++ b/include/bbcode.php @@ -431,14 +431,16 @@ function bbcode($Text,$preserve_nl = false, $tryoembed = true) { // replace [observer.baseurl] if ($observer) { + $s1 = '<span class="bb_observer">'; + $s2 = '</span>'; $obsBaseURL = $observer['xchan_connurl']; $obsBaseURL = preg_replace("/\/poco\/.*$/", '', $obsBaseURL); $Text = str_replace('[observer.baseurl]', $obsBaseURL, $Text); $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.webname]',substr($observer['xchan_addr'],0,strpos($observer['xchan_addr'],'@')), $Text); - $Text = str_replace('[observer.photo]','[zmg]'.$observer['xchan_photo_l'].'[/zmg]', $Text); + $Text = str_replace('[observer.name]',$s1 . $observer['xchan_name'] . $s2, $Text); + $Text = str_replace('[observer.address]',$s1 . $observer['xchan_addr'] . $s2, $Text); + $Text = str_replace('[observer.webname]',$s1 . substr($observer['xchan_addr'],0,strpos($observer['xchan_addr'],'@')) . $s2, $Text); + $Text = str_replace('[observer.photo]',$s1 . '[zmg]'.$observer['xchan_photo_l'].'[/zmg]' . $s2, $Text); } else { $Text = str_replace('[observer.baseurl]', '', $Text); $Text = str_replace('[observer.url]','', $Text); diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index ea8aa3365..eb3f67453 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -2388,3 +2388,11 @@ aside .nav > li > a:hover, aside .nav > li > a:focus { height: 300px; width: 300px; } + +.bb_observer { + color: red; +} + +.bb_observer img { + border: 3px solid red !important; +}
\ No newline at end of file |