diff options
-rw-r--r-- | actions/profilesettings.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/profilesettings.php b/actions/profilesettings.php index eeeb8592f..09b5b5abc 100644 --- a/actions/profilesettings.php +++ b/actions/profilesettings.php @@ -53,7 +53,7 @@ class ProfilesettingsAction extends SettingsAction { ($this->arg('location')) ? $this->arg('location') : $profile->location, _('Where you are, like "City, State (or Region), Country"')); common_checkbox('autosubscribe', _('Automatically subscribe to whoever subscribes to me (best for non-humans)'), - ($this->arg('autosubscribe') : $this->boolean('autosubscribe') : $user->autosubscribe); + ($this->arg('autosubscribe')) ? $this->boolean('autosubscribe') : $user->autosubscribe); common_submit('submit', _('Save')); common_element_end('form'); common_show_footer(); |