summaryrefslogtreecommitdiff
path: root/classes/sanitizer.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2021-02-06 09:51:28 +0300
committerAndrew Dolgov <[email protected]>2021-02-06 09:51:28 +0300
commit9fdeb58fd39fb24aafebd67ad88f58be12b8ce7d (patch)
tree0632cdb4e6b64b9153bec00e53a976404a8ed90d /classes/sanitizer.php
parent8b39e6bca74fd8452a1c74936103c0b35afe7101 (diff)
check a few more php8 warnings
Diffstat (limited to 'classes/sanitizer.php')
-rw-r--r--classes/sanitizer.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/classes/sanitizer.php b/classes/sanitizer.php
index 9f3bfada0..64b2edd36 100644
--- a/classes/sanitizer.php
+++ b/classes/sanitizer.php
@@ -97,7 +97,7 @@ class Sanitizer {
}
if ($entry->hasAttribute('src') &&
- ($owner && get_pref("STRIP_IMAGES", $owner)) || $force_remove_images || $_SESSION["bw_limit"]) {
+ ($owner && get_pref("STRIP_IMAGES", $owner)) || $force_remove_images || ($_SESSION["bw_limit"] ?? false)) {
$p = $doc->createElement('p');
@@ -147,7 +147,7 @@ class Sanitizer {
'sup', 'table', 'tbody', 'td', 'tfoot', 'th', 'thead', 'time',
'tr', 'track', 'tt', 'u', 'ul', 'var', 'wbr', 'video', 'xml:namespace' );
- if ($_SESSION['hasSandbox']) $allowed_elements[] = 'iframe';
+ if ($_SESSION['hasSandbox'] ?? false) $allowed_elements[] = 'iframe';
$disallowed_attributes = array('id', 'style', 'class', 'width', 'height', 'allow');