diff options
author | friendica <info@friendica.com> | 2012-04-10 16:31:49 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-04-10 16:31:49 -0700 |
commit | 9b1bb53234846f8dedbf10f0adf1033593ae26d7 (patch) | |
tree | fe454525594386bb5ed786fa8b45ba460c764132 /mod | |
parent | 703bfcb6d4bd21e68aaabd5f1b256106c505f0e9 (diff) | |
download | volse-hubzilla-9b1bb53234846f8dedbf10f0adf1033593ae26d7.tar.gz volse-hubzilla-9b1bb53234846f8dedbf10f0adf1033593ae26d7.tar.bz2 volse-hubzilla-9b1bb53234846f8dedbf10f0adf1033593ae26d7.zip |
fix_mce_lf on profiles
Diffstat (limited to 'mod')
-rw-r--r-- | mod/profiles.php | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/mod/profiles.php b/mod/profiles.php index 7b3b6ccc1..20be43d5d 100644 --- a/mod/profiles.php +++ b/mod/profiles.php @@ -121,16 +121,17 @@ function profiles_post(&$a) { $politic = notags(trim($_POST['politic'])); $religion = notags(trim($_POST['religion'])); - $about = escape_tags(trim($_POST['about'])); - $interest = escape_tags(trim($_POST['interest'])); - $contact = escape_tags(trim($_POST['contact'])); - $music = escape_tags(trim($_POST['music'])); - $book = escape_tags(trim($_POST['book'])); - $tv = escape_tags(trim($_POST['tv'])); - $film = escape_tags(trim($_POST['film'])); - $romance = escape_tags(trim($_POST['romance'])); - $work = escape_tags(trim($_POST['work'])); - $education = escape_tags(trim($_POST['education'])); + $about = fix_mce_lf(escape_tags(trim($_POST['about']))); + $interest = fix_mce_lf(escape_tags(trim($_POST['interest']))); + $contact = fix_mce_lf(escape_tags(trim($_POST['contact']))); + $music = fix_mce_lf(escape_tags(trim($_POST['music']))); + $book = fix_mce_lf(escape_tags(trim($_POST['book']))); + $tv = fix_mce_lf(escape_tags(trim($_POST['tv']))); + $film = fix_mce_lf(escape_tags(trim($_POST['film']))); + $romance = fix_mce_lf(escape_tags(trim($_POST['romance']))); + $work = fix_mce_lf(escape_tags(trim($_POST['work']))); + $education = fix_mce_lf(escape_tags(trim($_POST['education']))); + $hide_friends = (($_POST['hide-friends'] == 1) ? 1: 0); $r = q("UPDATE `profile` |