diff options
author | root <root@diekershoff.homeunix.net> | 2011-01-18 11:14:28 +0100 |
---|---|---|
committer | root <root@diekershoff.homeunix.net> | 2011-01-18 11:14:28 +0100 |
commit | 13fa27f7578d292d8d722554ce6211e8e0bc91af (patch) | |
tree | 2377a23718c3406206f03b65aad2a9f5b1eb8b12 /include/html2bbcode.php | |
parent | 3323f256c35ceb30a4b2ac1984a2eded672eb33f (diff) | |
parent | 028460a5c1de4833bb1dcfaa945c1292952bf923 (diff) | |
download | volse-hubzilla-13fa27f7578d292d8d722554ce6211e8e0bc91af.tar.gz volse-hubzilla-13fa27f7578d292d8d722554ce6211e8e0bc91af.tar.bz2 volse-hubzilla-13fa27f7578d292d8d722554ce6211e8e0bc91af.zip |
Merge branch 'master' of git://github.com/friendika/friendika
Diffstat (limited to 'include/html2bbcode.php')
-rw-r--r-- | include/html2bbcode.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/html2bbcode.php b/include/html2bbcode.php index 688c01452..65cbcec41 100644 --- a/include/html2bbcode.php +++ b/include/html2bbcode.php @@ -11,6 +11,9 @@ function html2bbcode($s) { $htmltags = array( '/\n/is', + '/\<pre\>(.*?)\<\/pre\>/is', + '/\<p(.*?)\>/is', + '/\<\/p\>/is', '/\<b\>(.*?)\<\/b\>/is', '/\<i\>(.*?)\<\/i\>/is', '/\<u\>(.*?)\<\/u\>/is', @@ -33,6 +36,9 @@ function html2bbcode($s) { $bbtags = array( '', + '[code]$1[/code]', + '', + "\n", '[b]$1[/b]', '[i]$1[/i]', '[u]$1[/u]', |