diff --git a/phpBB/phpbb/template/twig/extension/icon.php b/phpBB/phpbb/template/twig/extension/icon.php
index 07b01eee4b..5376e88973 100644
--- a/phpBB/phpbb/template/twig/extension/icon.php
+++ b/phpBB/phpbb/template/twig/extension/icon.php
@@ -74,10 +74,13 @@ class icon extends \Twig\Extension\AbstractExtension
return '';
}
+ $not_found = false;
+ $source = '';
+
switch ($type)
{
case 'font':
- $source = '';
+ // Nothing to do here..
break;
case 'iconify':
@@ -86,19 +89,39 @@ class icon extends \Twig\Extension\AbstractExtension
break;
case 'png':
- $board_url = defined('PHPBB_USE_BOARD_URL_PATH') && PHPBB_USE_BOARD_URL_PATH;
- $web_path = $board_url ? generate_board_url() . '/' : $environment->get_web_root_path();
- $style_path = $this->user->style['style_path'];
+ $filesystem = $environment->get_filesystem();
+ $root_path = $environment->get_web_root_path();
- $source = "{$web_path}styles/{$style_path}/theme/icons/png/{$icon}.png";
+ $board_url = defined('PHPBB_USE_BOARD_URL_PATH') && PHPBB_USE_BOARD_URL_PATH;
+ $base_path = $board_url ? generate_board_url() . '/' : $root_path;
+
+ // Iterate over the user's styles and check for icon existance
+ foreach ($this->get_style_list() as $style_path)
+ {
+ if ($filesystem->exists("{$root_path}styles/{$style_path}/theme/icons/png/{$icon}.png"))
+ {
+ $source = "{$base_path}styles/{$style_path}/theme/icons/png/{$icon}.png";
+
+ break;
+ }
+ }
+
+ // Check if the icon was found or not
+ $not_found = empty($source);
break;
case 'svg':
try
{
+ // Try to load and prepare the SVG icon
$file = $environment->load('icons/svg/' . $icon . '.svg');
$source = $this->prepare_svg($file);
}
+ catch (\Twig\Error\LoaderError $e)
+ {
+ // Icon was not found
+ $not_found = true;
+ }
catch (\Twig\Error\Error $e)
{
return '';
@@ -110,6 +133,20 @@ class icon extends \Twig\Extension\AbstractExtension
break;
}
+ // If no PNG or SVG icon was found, display a default 404 PNG icon.
+ if ($not_found)
+ {
+ if (empty($base_path))
+ {
+ $board_url = defined('PHPBB_USE_BOARD_URL_PATH') && PHPBB_USE_BOARD_URL_PATH;
+ $base_path = $board_url ? generate_board_url() . '/' : $environment->get_web_root_path();
+ }
+
+ $source = "{$base_path}styles/chameleon/theme/icons/png/404.png";
+ $type = 'png';
+ $icon = '404';
+ }
+
try
{
return $environment->render("macros/icons/{$type}.html", [
@@ -130,8 +167,11 @@ class icon extends \Twig\Extension\AbstractExtension
/**
* Prepare an SVG for usage in the template icon.
*
+ * This removes any and elements,
+ * aswell as any ',
],
+ /** SVG: Not found */
+ [
+ [
+ 'type' => 'svg',
+ 'icon' => 'not-existent',
+ 'title' => 'Just a title',
+ 'hidden' => false,
+ 'classes' => '',
+ 'attributes' => [],
+ ],
+ [],
+ '
',
+ ],
/** SVG: Sanitization */
[
[