From: Zach Copley Date: Wed, 24 Sep 2008 05:24:31 +0000 (-0400) Subject: Twitter bridge - fixed another bug that kept prefs from saving properly X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=e8b6e394dc0a087538af6cddd16ebc57cfa4c9cd;p=quix0rs-gnu-social.git Twitter bridge - fixed another bug that kept prefs from saving properly darcs-hash:20080924052431-7b5ce-589a3f5352f241c5c938ed855601d971e8d69fff.gz --- 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;