Use 'Preferences' instead of 'General Settings'

refs #6073
This commit is contained in:
Eric Lippmann 2014-11-13 18:08:30 +01:00
parent 1600514839
commit cc161764ff
1 changed files with 3 additions and 3 deletions

View File

@ -25,9 +25,9 @@ class PreferenceController extends BasePreferenceController
public static function createProvidedTabs()
{
return array(
'general' => new Tab(
'preferences' => new Tab(
array(
'title' => t('General settings'),
'title' => t('Preferences'),
'url' => Url::fromPath('/preference')
)
)
@ -51,6 +51,6 @@ class PreferenceController extends BasePreferenceController
$form->handleRequest();
$this->view->form = $form;
$this->getTabs()->activate('general');
$this->getTabs()->activate('preferences');
}
}