Skip to content
Snippets Groups Projects
Commit 4efea3f9 authored by catch's avatar catch
Browse files

Issue #3240955 by andypost:...

Issue #3240955 by andypost: \Drupal\media\Plugin\Filter\MediaEmbed::applyPerEmbedMediaOverrides() triggers deprecations in PHP 8.1
parent c30ae869
No related branches found
No related tags found
No related merge requests found
......@@ -463,7 +463,7 @@ protected function applyPerEmbedMediaOverrides(\DOMElement $node, MediaInterface
// explicitly empty instead so it can be ignored by assistive
// technologies, such as screen readers.
if ($node->getAttribute('alt') === '""') {
$node->setAttribute('alt', NULL);
$node->setAttribute('alt', '');
}
$media->{$image_field}->alt = $node->getAttribute('alt');
// All media entities have a thumbnail. In the case of image media, it
......
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