diff options
author | zach <zach@controlyourself.ca> | 2008-10-06 20:44:32 -0400 |
---|---|---|
committer | zach <zach@controlyourself.ca> | 2008-10-06 20:44:32 -0400 |
commit | db236870c6f812ab012e0146566fb0764ee05ec0 (patch) | |
tree | 6315c8435f094862dc0d5388b74d24cf47bb6b4d /lib/util.php | |
parent | fd576d73d095d2f1b65e09ff8a7fed5fc6e8f436 (diff) |
Twitter bridge - was checking the wrong bit (!) for reply sync preference
darcs-hash:20081007004432-462f3-6385dcaf69cbcf18ce36a45dc17f5e8b9a19ba31.gz
Diffstat (limited to 'lib/util.php')
-rw-r--r-- | lib/util.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/util.php b/lib/util.php index 1e58fda09..bb5da1396 100644 --- a/lib/util.php +++ b/lib/util.php @@ -1120,7 +1120,7 @@ function common_broadcast_notice($notice, $remote=false) { // If it's not a Twitter-style reply, or if the user WANTS to send replies... if (!preg_match('/^@[a-zA-Z0-9_]{1,15}\b/', $notice->content) || - (($flink->noticesync & FOREIGN_NOTICE_SEND) == FOREIGN_NOTICE_SEND)) { + (($flink->noticesync & FOREIGN_NOTICE_SEND_REPLY) == FOREIGN_NOTICE_SEND_REPLY)) { $result = common_twitter_broadcast($notice, $flink); |