From 372ad112c999e698514ec37c41fca4a63b9ac203 Mon Sep 17 00:00:00 2001 From: friendica Date: Wed, 1 Aug 2012 01:36:39 -0700 Subject: [PATCH] tinymce linebreaks, I fix it, somebody breaks it, I fix it, somebody breaks it. Repeat. --- include/text.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/text.php b/include/text.php index 41030e677c..1c50086aac 100644 --- a/include/text.php +++ b/include/text.php @@ -1578,7 +1578,7 @@ function undo_post_tagging($s) { function fix_mce_lf($s) { $s = str_replace("\r\n","\n",$s); - $s = str_replace("\n\n","\n",$s); +// $s = str_replace("\n\n","\n",$s); return $s; }