mirror of
https://github.com/friendica/friendica
synced 2025-04-25 01:50:11 +00:00
Rename escapeTags to escapeHtml
rename function and update calls.
This commit is contained in:
parent
b5a97c1abe
commit
063f0e9cb0
16 changed files with 44 additions and 44 deletions
|
@ -2478,9 +2478,9 @@ function admin_page_viewlogs(App $a)
|
|||
}
|
||||
$seek = fseek($fp, 0 - $size, SEEK_END);
|
||||
if ($seek === 0) {
|
||||
$data = Strings::escapeTags(fread($fp, $size));
|
||||
$data = Strings::escapeHtml(fread($fp, $size));
|
||||
while (!feof($fp)) {
|
||||
$data .= Strings::escapeTags(fread($fp, 4096));
|
||||
$data .= Strings::escapeHtml(fread($fp, 4096));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue