diff options
author | Zach Copley <zach@controlyourself.ca> | 2008-09-24 01:24:31 -0400 |
---|---|---|
committer | Zach Copley <zach@controlyourself.ca> | 2008-09-24 01:24:31 -0400 |
commit | e8b6e394dc0a087538af6cddd16ebc57cfa4c9cd (patch) | |
tree | 93b889994f40dd2381954e1343344cdfc1ccfed7 | |
parent | 06859cc14e5d68c83e4ecb38a0a32f354bc6ed80 (diff) |
Twitter bridge - fixed another bug that kept prefs from saving properly
darcs-hash:20080924052431-7b5ce-589a3f5352f241c5c938ed855601d971e8d69fff.gz
-rw-r--r-- | actions/twittersettings.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/actions/twittersettings.php b/actions/twittersettings.php index a7c70c287..d8eb7aba0 100644 --- a/actions/twittersettings.php +++ b/actions/twittersettings.php @@ -169,6 +169,8 @@ class TwittersettingsAction extends SettingsAction { } else { $flink->noticesync = 1; } + } else { + $flink->noticesync = 0; } $flink->friendsync = ($friendsync) ? 2 : 0; @@ -242,6 +244,8 @@ class TwittersettingsAction extends SettingsAction { } else { $flink->noticesync = 1; } + } else { + $flink->noticesync = 0; } $flink->friendsync = ($friendsync) ? 2 : 0; |