diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-01-17 22:30:44 +0000 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-01-17 22:30:44 +0000 |
commit | 97c98cf59ace088e487e130182ff4dc99d2d408b (patch) | |
tree | 2e18088b883c2fd6940d16cad0239043bf097570 /actions/twittersettings.php | |
parent | 3ce45acfa8488a050cf7d68c8e980166f56c5d43 (diff) |
Break up settings into two tabset
Made two tabsets: account and connect. Removed "Invite" from
the global nav to make room.
Diffstat (limited to 'actions/twittersettings.php')
-rw-r--r-- | actions/twittersettings.php | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/actions/twittersettings.php b/actions/twittersettings.php index cd070cb45..597623c80 100644 --- a/actions/twittersettings.php +++ b/actions/twittersettings.php @@ -31,7 +31,7 @@ if (!defined('LACONICA')) { exit(1); } -require_once INSTALLDIR.'/lib/settingsaction.php'; +require_once INSTALLDIR.'/lib/connectsettingsaction.php'; define('SUBSCRIPTIONS', 80); @@ -47,7 +47,7 @@ define('SUBSCRIPTIONS', 80); * @see SettingsAction */ -class TwittersettingsAction extends SettingsAction +class TwittersettingsAction extends ConnectSettingsAction { /** * Title of the page @@ -129,7 +129,8 @@ class TwittersettingsAction extends SettingsAction $this->elementEnd('ul'); $this->elementEnd('fieldset'); - $this->elementStart('fieldset', array('id' => 'settings_twitter_preferences')); + $this->elementStart('fieldset', + array('id' => 'settings_twitter_preferences')); $this->element('legend', null, _('Preferences')); $this->elementStart('ul'); |