From e8b6e394dc0a087538af6cddd16ebc57cfa4c9cd Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Wed, 24 Sep 2008 01:24:31 -0400 Subject: [PATCH] Twitter bridge - fixed another bug that kept prefs from saving properly darcs-hash:20080924052431-7b5ce-589a3f5352f241c5c938ed855601d971e8d69fff.gz --- actions/twittersettings.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/actions/twittersettings.php b/actions/twittersettings.php index a7c70c2876..d8eb7aba08 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;