Removed the double quotes around the setting's name
authorSteffen K9 <alfred@skrumbholz.de>
Thu, 16 Aug 2018 17:57:09 +0000 (19:57 +0200)
committerGitHub <noreply@github.com>
Thu, 16 Aug 2018 17:57:09 +0000 (19:57 +0200)
The double quotes are only used for the settings of Blockem and Superblock. This is inconsistent from my point of view.

blockem/blockem.php

index 8263fb1..c915cd6 100644 (file)
@@ -51,11 +51,11 @@ function blockem_addon_settings (App $a, &$s)
        }
 
        $s .= '<span id="settings_blockem_inflated" class="settings-block fakelink" style="display: block;" onclick="openClose(\'settings_blockem_expanded\'); openClose(\'settings_blockem_inflated\');">';
-       $s .= '<h3>' . L10n::t('"Blockem"') . '</h3>';
+       $s .= '<h3>' . L10n::t('Blockem') . '</h3>';
        $s .= '</span>';
        $s .= '<div id="settings_blockem_expanded" class="settings-block" style="display: none;">';
        $s .= '<span class="fakelink" onclick="openClose(\'settings_blockem_expanded\'); openClose(\'settings_blockem_inflated\');">';
-       $s .= '<h3>' . L10n::t('"Blockem"') . '</h3>';
+       $s .= '<h3>' . L10n::t('Blockem') . '</h3>';
        $s .= '</span>';
 
        $s .= '<div id="blockem-wrapper">';