aboutsummaryrefslogtreecommitdiffstats
path: root/include/html2bbcode.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2010-11-05 02:19:39 -0700
committerFriendika <info@friendika.com>2010-11-05 02:19:39 -0700
commit206eee02294cc75c06479f599c03e5a95ea5ee70 (patch)
treeea519bbde2746f2bf5d3e6c71305c935ff80ed31 /include/html2bbcode.php
parentb94cb8d234d70bc534ad1cef767b9f62d10eef26 (diff)
downloadvolse-hubzilla-206eee02294cc75c06479f599c03e5a95ea5ee70.tar.gz
volse-hubzilla-206eee02294cc75c06479f599c03e5a95ea5ee70.tar.bz2
volse-hubzilla-206eee02294cc75c06479f599c03e5a95ea5ee70.zip
preserve newlines on all networks
Diffstat (limited to 'include/html2bbcode.php')
-rw-r--r--include/html2bbcode.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/html2bbcode.php b/include/html2bbcode.php
index 31ede1a8e..a2e53a81b 100644
--- a/include/html2bbcode.php
+++ b/include/html2bbcode.php
@@ -6,6 +6,7 @@ function html2bbcode($s) {
// Tags to Find
$htmltags = array(
+ '/\n/is',
'/\<b\>(.*?)\<\/b\>/is',
'/\<i\>(.*?)\<\/i\>/is',
'/\<u\>(.*?)\<\/u\>/is',
@@ -24,6 +25,7 @@ $htmltags = array(
// Replace with
$bbtags = array(
+ '',
'[b]$1[/b]',
'[i]$1[/i]',
'[u]$1[/u]',
@@ -31,7 +33,7 @@ $bbtags = array(
'[*]$1',
'[img]$2[/img]',
'$2',
- '\n',
+ "\n",
'[b]$1[/b]',
'[url=$1]$3[/url]',
'[code]$1[/code]',