diff options
Diffstat (limited to 'actions')
-rw-r--r-- | actions/avatar.php | 2 | ||||
-rw-r--r-- | actions/password.php | 2 | ||||
-rw-r--r-- | actions/profilesettings.php | 2 | ||||
-rw-r--r-- | actions/register.php | 2 |
4 files changed, 7 insertions, 1 deletions
diff --git a/actions/avatar.php b/actions/avatar.php index 851ef23f4..8a4557f38 100644 --- a/actions/avatar.php +++ b/actions/avatar.php @@ -19,6 +19,8 @@ if (!defined('LACONICA')) { exit(1); } +require_once(INSTALLDIR.'/lib/settingsaction.php'); + class AvatarAction extends SettingsAction { function show_form($msg=NULL, $success=false) { diff --git a/actions/password.php b/actions/password.php index c9869f177..c5ab28ee9 100644 --- a/actions/password.php +++ b/actions/password.php @@ -19,6 +19,8 @@ if (!defined('LACONICA')) { exit(1); } +require_once(INSTALLDIR.'/lib/settingsaction.php'); + class PasswordAction extends SettingsAction { function show_form($msg=NULL, $success=false) { diff --git a/actions/profilesettings.php b/actions/profilesettings.php index ae060dd90..7779379b1 100644 --- a/actions/profilesettings.php +++ b/actions/profilesettings.php @@ -19,6 +19,8 @@ if (!defined('LACONICA')) { exit(1); } +require_once(INSTALLDIR.'/lib/settingsaction.php'); + class ProfilesettingsAction extends SettingsAction { function show_form($msg=NULL, $success=false) { diff --git a/actions/register.php b/actions/register.php index 2b41b6a77..a6cdbb51b 100644 --- a/actions/register.php +++ b/actions/register.php @@ -52,7 +52,7 @@ class RegisterAction extends Action { $this->show_form(_t('Passwords don\'t match.')); } else if ($this->register_user($nickname, $password, $email)) { common_set_user($nickname); - common_redirect(common_local_url('settings')); + common_redirect(common_local_url('profilesettings')); } else { $this->show_form(_t('Invalid username or password.')); } |