aboutsummaryrefslogtreecommitdiffstats
path: root/mod/item.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-04-10 17:14:07 -0700
committerfriendica <info@friendica.com>2012-04-10 17:14:07 -0700
commit18e225b05167261429df0e8dc4e6acf5cefd6c2a (patch)
tree33c68f16699b1c4318a15eb7488dcd0efbf55b80 /mod/item.php
parentab46f95683cd12edb7cc80b003f1806b12135c10 (diff)
downloadvolse-hubzilla-18e225b05167261429df0e8dc4e6acf5cefd6c2a.tar.gz
volse-hubzilla-18e225b05167261429df0e8dc4e6acf5cefd6c2a.tar.bz2
volse-hubzilla-18e225b05167261429df0e8dc4e6acf5cefd6c2a.zip
move all fix_mce to one function so it can easily be undone
Diffstat (limited to 'mod/item.php')
-rw-r--r--mod/item.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/mod/item.php b/mod/item.php
index c30b17457..7f0ca3fc3 100644
--- a/mod/item.php
+++ b/mod/item.php
@@ -272,8 +272,7 @@ function item_post(&$a) {
$plaintext = (local_user() ? intval(get_pconfig(local_user(),'system','plaintext')) : 0);
if((! $parent) && (! $api_source) && (! $plaintext)) {
- $body = str_replace("\r\n","\n",$body);
- $body = str_replace("\n\n","\n",$body);
+ $body = fix_mce_lf($body);
}