Skip to content
Snippets Groups Projects
Commit 9fdeb58f authored by Andrew Dolgov's avatar Andrew Dolgov
Browse files

check a few more php8 warnings

parent 8b39e6bc
No related branches found
No related tags found
No related merge requests found
...@@ -97,7 +97,7 @@ class Sanitizer { ...@@ -97,7 +97,7 @@ class Sanitizer {
} }
if ($entry->hasAttribute('src') && 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'); $p = $doc->createElement('p');
...@@ -147,7 +147,7 @@ class Sanitizer { ...@@ -147,7 +147,7 @@ class Sanitizer {
'sup', 'table', 'tbody', 'td', 'tfoot', 'th', 'thead', 'time', 'sup', 'table', 'tbody', 'td', 'tfoot', 'th', 'thead', 'time',
'tr', 'track', 'tt', 'u', 'ul', 'var', 'wbr', 'video', 'xml:namespace' ); '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'); $disallowed_attributes = array('id', 'style', 'class', 'width', 'height', 'allow');
......
...@@ -103,13 +103,15 @@ class Af_RedditImgur extends Plugin { ...@@ -103,13 +103,15 @@ class Af_RedditImgur extends Plugin {
if (isset($data["media_metadata"])) { if (isset($data["media_metadata"])) {
foreach ($data["media_metadata"] as $media) { foreach ($data["media_metadata"] as $media) {
$media_url = htmlspecialchars_decode($media["s"]["u"]); if (!empty($media["s"]["u"])) {
$media_url = htmlspecialchars_decode($media["s"]["u"]);
Debug::log("found media_metadata (gallery): $media_url", Debug::$LOG_VERBOSE); Debug::log("found media_metadata (gallery): $media_url", Debug::$LOG_VERBOSE);
if ($media_url) { if ($media_url) {
$this->handle_as_image($doc, $anchor, $media_url); $this->handle_as_image($doc, $anchor, $media_url);
$found = 1; $found = 1;
}
} }
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment