diff options
author | friendica <info@friendica.com> | 2012-07-04 17:15:43 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-07-04 17:15:43 -0700 |
commit | 5589bca1e031517cc440c7f2896f107dbb57296e (patch) | |
tree | 3c1b780f22fe3a745d4cab5de3386a5779686a87 /include/text.php | |
parent | fd626022ec02ef47b9142bba08180502babbd0ca (diff) | |
download | volse-hubzilla-5589bca1e031517cc440c7f2896f107dbb57296e.tar.gz volse-hubzilla-5589bca1e031517cc440c7f2896f107dbb57296e.tar.bz2 volse-hubzilla-5589bca1e031517cc440c7f2896f107dbb57296e.zip |
fix !@#$ tinymce linebreaks for the thousandth time
Diffstat (limited to 'include/text.php')
-rw-r--r-- | include/text.php | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/text.php b/include/text.php index c3558c641..409d40d59 100644 --- a/include/text.php +++ b/include/text.php @@ -1537,7 +1537,6 @@ function undo_post_tagging($s) { function fix_mce_lf($s) { $s = str_replace("\r\n","\n",$s); - $s = str_replace("\n\n","\n",$s); return $s; } |