From 6218c2e1209e52ba7c9cc3eb6a01ce9b2bcb4f3f Mon Sep 17 00:00:00 2001 From: 3D-I Date: Thu, 21 Oct 2021 22:05:25 +0200 Subject: [PATCH] [ticket/16899] Add SVG and WEBP to ranks, smilies and topic icons PHPBB3-16899 --- phpBB/includes/acp/acp_icons.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/phpBB/includes/acp/acp_icons.php b/phpBB/includes/acp/acp_icons.php index b1d4d2a27a..2220089231 100644 --- a/phpBB/includes/acp/acp_icons.php +++ b/phpBB/includes/acp/acp_icons.php @@ -116,8 +116,8 @@ class acp_icons $_images[$path . $img]['file'] = $path . $img; - $_images[$path . $img]['width'] = $img_size ? $img_size[0] : ''; - $_images[$path . $img]['height'] = $img_size ? $img_size[1] : ''; + $_images[$path . $img]['width'] = $img_size ? $img_size[0] : 127; + $_images[$path . $img]['height'] = $img_size ? $img_size[1] : 127; } } unset($imglist);