- Remove $theme_richtext_editor boot var
- Remove "richtext" feature - Remove fix_mce_lf() function - Remove nomce parameter
This commit is contained in:
parent
4ad6a7f073
commit
66482c1d9c
11 changed files with 36 additions and 115 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue