diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-07-20 16:28:32 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-07-20 16:28:32 -0400 |
commit | f4936d7c5876bdb9d11ebab7cf9268d176c1f8bd (patch) | |
tree | ad761b2b277d7845f156cc55bf6d8cdb4b0a6af7 | |
parent | 3ffe57c7e2ca53b77909dc0daca5845a5a0497ee (diff) |
too much merlot on the airplane, dumb syntax mistake
darcs-hash:20080720202832-84dde-918fb1d27d1dd1f06e3bceeb5217c136e6d78ac5.gz
-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(); |