From 92422241a96e757972ac021c2e5f2186bd197072 Mon Sep 17 00:00:00 2001 From: Alexander Ebert Date: Thu, 7 Sep 2023 15:01:54 +0200 Subject: [PATCH] Fix the default value of placeholder badges See https://www.woltlab.com/community/thread/301502-fehler-bei-troph%C3%A4en/ --- wcfsetup/install/files/lib/acp/form/TrophyEditForm.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wcfsetup/install/files/lib/acp/form/TrophyEditForm.class.php b/wcfsetup/install/files/lib/acp/form/TrophyEditForm.class.php index 4237bf30f4..c5be4d0bfa 100644 --- a/wcfsetup/install/files/lib/acp/form/TrophyEditForm.class.php +++ b/wcfsetup/install/files/lib/acp/form/TrophyEditForm.class.php @@ -86,7 +86,7 @@ class TrophyEditForm extends TrophyAddForm // reset badge values for non badge trophies if ($this->trophy->type != Trophy::TYPE_BADGE) { - $this->iconName = 'trophy'; + $this->iconName = 'trophy;false'; $this->iconColor = 'rgba(255, 255, 255, 1)'; $this->badgeColor = 'rgba(50, 92, 132, 1)'; } -- 2.20.1