From: friendica Date: Wed, 1 Aug 2012 08:36:39 +0000 (-0700) Subject: tinymce linebreaks, I fix it, somebody breaks it, I fix it, somebody breaks it. Repeat. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=372ad112c999e698514ec37c41fca4a63b9ac203;p=friendica.git tinymce linebreaks, I fix it, somebody breaks it, I fix it, somebody breaks it. Repeat. --- 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; }