From 41a2a6916f6f19a8d181548cf6bca38ba46ba741 Mon Sep 17 00:00:00 2001 From: Frank Naegler <frank.naegler@typo3.org> Date: Fri, 6 Apr 2018 12:24:34 +0200 Subject: [PATCH] [BUGFIX] Fix wrong icon usage in install tool MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This patch change a icon to be consistent, the icon was misleading and had the wrong color. Now the „add“-icon is used instead of the „missing“-icon. Resolves: #84642 Releases: master Change-Id: I4563badbaab956798c9df58dce5e9e7f3c436c5a Reviewed-on: https://review.typo3.org/56580 Reviewed-by: Mathias Brodala <mbrodala@pagemachine.de> Tested-by: TYPO3com <no-reply@typo3.com> Reviewed-by: Oliver Hader <oliver.hader@typo3.org> Tested-by: Oliver Hader <oliver.hader@typo3.org> Reviewed-by: Georg Ringer <georg.ringer@gmail.com> Tested-by: Georg Ringer <georg.ringer@gmail.com> --- .../Resources/Private/Partials/Maintenance/LanguagePacks.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typo3/sysext/install/Resources/Private/Partials/Maintenance/LanguagePacks.html b/typo3/sysext/install/Resources/Private/Partials/Maintenance/LanguagePacks.html index 460b2cd76786..4128f6738b99 100644 --- a/typo3/sysext/install/Resources/Private/Partials/Maintenance/LanguagePacks.html +++ b/typo3/sysext/install/Resources/Private/Partials/Maintenance/LanguagePacks.html @@ -6,7 +6,7 @@ <div id="t3js-languagePacks-activate-icon"><core:icon identifier="actions-add" /></div> <div id="t3js-languagePacks-deactivate-icon"><core:icon identifier="actions-remove" /></div> <div id="t3js-languagePacks-languageUpdate-icon"><core:icon identifier="actions-system-refresh" /></div> - <div id="t3js-languagePacks-extensionPack-misses-icon"><core:icon identifier="status-status-permission-denied" /></div> + <div id="t3js-languagePacks-extensionPack-misses-icon"><core:icon identifier="actions-add" /></div> </div> <p> This module gives an overview of available languages other than the default "English" language. It allows -- GitLab