diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-01-24 18:38:12 +0100 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-01-24 18:38:12 +0100 |
commit | 32f81b3c0e7be3da35d5813e5409fa3b65dc220e (patch) | |
tree | 1a6e5e808c1e3487c3559a21ba17715a3782708c /lib/util.php | |
parent | 4c9f3297f26d638539caede727e35aa5b54174a1 (diff) |
Initial support for ping service
It makes sense to use the weblogs.com ping service to alert people to
changes on the site. So, we do. Includes an extra ping queue handler.
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 b5b194519..419e21e82 100644 --- a/lib/util.php +++ b/lib/util.php @@ -1124,7 +1124,7 @@ function common_twitter_broadcast($notice, $flink) function common_enqueue_notice($notice) { - foreach (array('jabber', 'omb', 'sms', 'public') as $transport) { + foreach (array('jabber', 'omb', 'sms', 'public', 'ping') as $transport) { $qi = new Queue_item(); $qi->notice_id = $notice->id; $qi->transport = $transport; |