Merge pull request #706 from AlfredSK/patch-1

Superblock: Removing the double quotes around setting's name
This commit is contained in:
Michael Vogel 2018-08-17 07:41:42 +02:00 committed by GitHub
commit 2ed63ea72e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -44,11 +44,11 @@ function superblock_addon_settings(&$a, &$s)
}
$s .= '<span id="settings_superblock_inflated" class="settings-block fakelink" style="display: block;" onclick="openClose(\'settings_superblock_expanded\'); openClose(\'settings_superblock_inflated\');">';
$s .= '<h3>' . L10n::t('"Superblock"') . '</h3>';
$s .= '<h3>' . L10n::t('Superblock') . '</h3>';
$s .= '</span>';
$s .= '<div id="settings_superblock_expanded" class="settings-block" style="display: none;">';
$s .= '<span class="fakelink" onclick="openClose(\'settings_superblock_expanded\'); openClose(\'settings_superblock_inflated\');">';
$s .= '<h3>' . L10n::t('"Superblock"') . '</h3>';
$s .= '<h3>' . L10n::t('Superblock') . '</h3>';
$s .= '</span>';
$s .= '<div id="superblock-wrapper">';
$s .= '<label id="superblock-label" for="superblock-words">' . L10n::t('Comma separated profile URLS to block') . ' </label>';