aboutsummaryrefslogtreecommitdiffstats
path: root/include/bbcode.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-06-09 16:24:29 -0700
committerFriendika <info@friendika.com>2011-06-09 16:24:29 -0700
commit67021c132a4cc6de1fe76aa8faab7bfc37e58423 (patch)
tree940ae2da796c7dcae8174313b54cb33950fa5c22 /include/bbcode.php
parent9203b48527050b0b4a17120a95b2b3202842d56d (diff)
downloadvolse-hubzilla-67021c132a4cc6de1fe76aa8faab7bfc37e58423.tar.gz
volse-hubzilla-67021c132a4cc6de1fe76aa8faab7bfc37e58423.tar.bz2
volse-hubzilla-67021c132a4cc6de1fe76aa8faab7bfc37e58423.zip
event communication basics
Diffstat (limited to 'include/bbcode.php')
-rw-r--r--include/bbcode.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/bbcode.php b/include/bbcode.php
index c1576fbcf..6ab67ffdc 100644
--- a/include/bbcode.php
+++ b/include/bbcode.php
@@ -37,7 +37,7 @@ function bbcode($Text,$preserve_nl = false) {
$Text = preg_replace("/\[mail\=([$MAILSearchString]*)\](.*?)\[\/mail\]/", '<a href="mailto:$1">$2</a>', $Text);
// Check for bold text
- $Text = preg_replace("(\[b\](.*?)\[\/b])is",'<strong>$1</strong>',$Text);
+ $Text = preg_replace("(\[b\](.*?)\[\/b\])is",'<strong>$1</strong>',$Text);
// Check for Italics text
$Text = preg_replace("(\[i\](.*?)\[\/i\])is",'<em>$1</em>',$Text);