mirror of
https://github.com/friendica/friendica
synced 2025-04-25 16:30:10 +00:00
Some removed escapeTags calls
This commit is contained in:
parent
0e2e488521
commit
23b10cf2ae
16 changed files with 39 additions and 50 deletions
|
@ -102,7 +102,7 @@ class OnePoll
|
|||
|
||||
if ($success) {
|
||||
self::updateContact($contact, ['failed' => false, 'last-update' => $updated, 'success_update' => $updated]);
|
||||
Contact::unmarkForArchival($contact);
|
||||
Contact::unmarkForArchival($contact);
|
||||
} else {
|
||||
self::updateContact($contact, ['failed' => true, 'last-update' => $updated, 'failure_update' => $updated]);
|
||||
Contact::markForArchival($contact);
|
||||
|
@ -317,7 +317,7 @@ class OnePoll
|
|||
$datarray['title'] .= $subpart->text;
|
||||
}
|
||||
}
|
||||
$datarray['title'] = Strings::escapeTags(trim($datarray['title']));
|
||||
$datarray['title'] = trim($datarray['title']);
|
||||
|
||||
//$datarray['title'] = Strings::escapeTags(trim($meta->subject));
|
||||
$datarray['created'] = DateTimeFormat::utc($meta->date);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue