From bf865f0210aee4c6742b10bb63cd05f0de9b9d12 Mon Sep 17 00:00:00 2001 From: Friendika Date: Sun, 10 Apr 2011 03:00:29 -0700 Subject: [PATCH] bug #34, line breaks double in retweet/share --- boot.php | 2 +- include/bbcode.php | 5 ++++- mod/share.php | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/boot.php b/boot.php index 6dd433fd83..3331c98671 100644 --- a/boot.php +++ b/boot.php @@ -2,7 +2,7 @@ set_time_limit(0); -define ( 'FRIENDIKA_VERSION', '2.1.943' ); +define ( 'FRIENDIKA_VERSION', '2.1.944' ); define ( 'DFRN_PROTOCOL_VERSION', '2.2' ); define ( 'DB_UPDATE_VERSION', 1047 ); diff --git a/include/bbcode.php b/include/bbcode.php index 44f5714509..6fadbaf7eb 100644 --- a/include/bbcode.php +++ b/include/bbcode.php @@ -3,7 +3,7 @@ require_once("include/oembed.php"); // BBcode 2 HTML was written by WAY2WEB.net // extended to work with Mistpark/Friendika - Mike Macgirvin -function bbcode($Text) { +function bbcode($Text,$preserve_nl = false) { // Replace any html brackets with HTML Entities to prevent executing HTML or script // Don't use strip_tags here because it breaks [url] search by replacing & with amp @@ -12,7 +12,10 @@ function bbcode($Text) { $Text = str_replace(">", ">", $Text); // Convert new line chars to html
tags + $Text = nl2br($Text); + if($preserve_nl) + $Text = str_replace(array("\n","\r"), array('',''),$Text); // Set up the parameters for a URL search string $URLSearchString = "^\[\]"; diff --git a/mod/share.php b/mod/share.php index 8a8229e8a1..94cd035b41 100644 --- a/mod/share.php +++ b/mod/share.php @@ -17,7 +17,7 @@ function share_init(&$a) { $o = ''; $o .= '♲ ' . $r[0]['author-name'] . '
'; - $o .= prepare_body($r[0]); + $o .= bbcode($r[0]['body'], true); echo $o . '
'; killme(); } \ No newline at end of file