summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorZach Copley <zach@controlyourself.ca>2009-02-12 14:39:21 -0800
committerZach Copley <zach@controlyourself.ca>2009-02-12 14:39:21 -0800
commitf8e2ad0677d6eede93e3008452e36985ea999d74 (patch)
tree79f29366b182dc933b2ed28395afc3adda56ea60 /lib
parent986068d6e7119e17509f228857d55873b34da28f (diff)
The fabled twitterqueuehandler
Diffstat (limited to 'lib')
-rw-r--r--lib/twitter.php2
-rw-r--r--lib/util.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/twitter.php b/lib/twitter.php
index 72212c185..deb6fd276 100644
--- a/lib/twitter.php
+++ b/lib/twitter.php
@@ -231,7 +231,7 @@ function broadcast_twitter($notice)
TWITTER_SERVICE);
// XXX: Not sure WHERE to check whether a notice should go to
- // Twitter. Should we even put in the queue if it's not? --Zach
+ // Twitter. Should we even put in the queue if it shouldn't? --Zach
if (is_twitter_bound($notice, $flink)) {
$fuser = $flink->getForeignUser();
diff --git a/lib/util.php b/lib/util.php
index 3f4fae3a5..7923fe28a 100644
--- a/lib/util.php
+++ b/lib/util.php
@@ -808,7 +808,7 @@ function common_broadcast_notice($notice, $remote=false)
function common_enqueue_notice($notice)
{
- foreach (array('jabber', 'omb', 'sms', 'public') as $transport) {
+ foreach (array('jabber', 'omb', 'sms', 'public', 'twitter') as $transport) {
$qi = new Queue_item();
$qi->notice_id = $notice->id;
$qi->transport = $transport;