]> git.mxchange.org Git - friendica.git/blobdiff - mod/contacts.php
applied coding convention:
[friendica.git] / mod / contacts.php
index 9394e81bb0f34ca86b830eb265d433086c6e7e6b..a2a77e2a5cddaa725e106e3ca1a86ad8fd77b86b 100644 (file)
@@ -191,13 +191,13 @@ function contacts_post(App $a) {
 
        $fetch_further_information = intval($_POST['fetch_further_information']);
 
-       $ffi_keyword_blacklist = fix_mce_lf(escape_tags(trim($_POST['ffi_keyword_blacklist'])));
+       $ffi_keyword_blacklist = escape_tags(trim($_POST['ffi_keyword_blacklist']));
 
        $priority = intval($_POST['poll']);
        if($priority > 5 || $priority < 0)
                $priority = 0;
 
-       $info = fix_mce_lf(escape_tags(trim($_POST['info'])));
+       $info = escape_tags(trim($_POST['info']));
 
        $r = q("UPDATE `contact` SET `profile-id` = %d, `priority` = %d , `info` = '%s',
                `hidden` = %d, `notify_new_posts` = %d, `fetch_further_information` = %d,