tinymce linebreaks, I fix it, somebody breaks it, I fix it, somebody breaks it. Repeat.

This commit is contained in:
friendica 2012-08-01 01:36:39 -07:00
parent 70389c99ea
commit 372ad112c9
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}