Remove useless HTML encode on item save
This commit is contained in:
parent
0b3cd206c3
commit
542e83137b
|
@ -246,7 +246,7 @@ function item_post(App $a) {
|
||||||
$app = $orig_post['app'];
|
$app = $orig_post['app'];
|
||||||
$categories = $orig_post['file'];
|
$categories = $orig_post['file'];
|
||||||
$title = Strings::escapeTags(trim($_REQUEST['title']));
|
$title = Strings::escapeTags(trim($_REQUEST['title']));
|
||||||
$body = Strings::escapeHtml(trim($body));
|
$body = trim($body);
|
||||||
$private = $orig_post['private'];
|
$private = $orig_post['private'];
|
||||||
$pubmail_enabled = $orig_post['pubmail'];
|
$pubmail_enabled = $orig_post['pubmail'];
|
||||||
$network = $orig_post['network'];
|
$network = $orig_post['network'];
|
||||||
|
@ -285,7 +285,7 @@ function item_post(App $a) {
|
||||||
$coord = Strings::escapeTags(trim($_REQUEST['coord'] ?? ''));
|
$coord = Strings::escapeTags(trim($_REQUEST['coord'] ?? ''));
|
||||||
$verb = Strings::escapeTags(trim($_REQUEST['verb'] ?? ''));
|
$verb = Strings::escapeTags(trim($_REQUEST['verb'] ?? ''));
|
||||||
$emailcc = Strings::escapeTags(trim($_REQUEST['emailcc'] ?? ''));
|
$emailcc = Strings::escapeTags(trim($_REQUEST['emailcc'] ?? ''));
|
||||||
$body = Strings::escapeHtml(trim($body));
|
$body = trim($body);
|
||||||
$network = Strings::escapeTags(trim(($_REQUEST['network'] ?? '') ?: Protocol::DFRN));
|
$network = Strings::escapeTags(trim(($_REQUEST['network'] ?? '') ?: Protocol::DFRN));
|
||||||
$guid = System::createUUID();
|
$guid = System::createUUID();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user