forked from friendica/friendica-addons
Removed the double quotes around setting's name
The double quotes are only used for the settings of Blockem and Superblock. This is inconsistent from my point of view.
This commit is contained in:
parent
28b699573c
commit
63ab5dcb35
|
@ -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>';
|
||||
|
|
Loading…
Reference in a new issue