Removed the word "Settings" from the settings. This information is redundant.

This commit is contained in:
Michael Vogel 2014-03-16 20:50:36 +01:00
parent c4578aafa0
commit 503ec7d072
20 changed files with 45 additions and 41 deletions

View file

@ -155,7 +155,7 @@ function statusnet_settings_post ($a,$post) {
return;
// don't check statusnet settings if statusnet submit button is not clicked
if (!x($_POST,'statusnet-submit')) return;
if (isset($_POST['statusnet-disconnect'])) {
/***
* if the statusnet-disconnect checkbox is set, clear the statusnet configuration
@ -279,11 +279,11 @@ function statusnet_settings(&$a,&$s) {
$shorteningchecked = (($shorteningenabled) ? ' checked="checked" ' : '');
$s .= '<span id="settings_statusnet_inflated" class="settings-block fakelink" style="display: block;" onclick="openClose(\'settings_statusnet_expanded\'); openClose(\'settings_statusnet_inflated\');">';
$s .= '<h3>'. t('StatusNet Posting Settings').'</h3>';
$s .= '<h3>'. t('StatusNet').'</h3>';
$s .= '</span>';
$s .= '<div id="settings_statusnet_expanded" class="settings-block" style="display: none;">';
$s .= '<span class="fakelink" onclick="openClose(\'settings_statusnet_expanded\'); openClose(\'settings_statusnet_inflated\');">';
$s .= '<h3>'. t('StatusNet Posting Settings').'</h3>';
$s .= '<h3>'. t('StatusNet').'</h3>';
$s .= '</span>';
if ( (!$ckey) && (!$csecret) ) {