From b89878511f1f30b4e18858940a5468b8999ab7ea Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 23 Oct 2009 20:31:53 +0000 Subject: Fix three fatal errors when posting from 0.9.x: * OMB remote updates were trying to load nonexistent Laconica_OMB_Service_Consumer class -- fixed to StatusNet_OMB_Service_Consumer. Regression caused during libomb merge. * Twitter processing was still being queued from core when no twitter plugin was present, which triggered an exception from UnqueueHandler; leftover code from before the plugin extraction. * UnqueueHandler's exception caused a fatal error instead because it was missing the "new" keyword. Wouldn't have been seen when testing with the plugin enabled. --- lib/util.php | 1 - 1 file changed, 1 deletion(-) (limited to 'lib/util.php') diff --git a/lib/util.php b/lib/util.php index e641afd4d..55ded7dd4 100644 --- a/lib/util.php +++ b/lib/util.php @@ -906,7 +906,6 @@ function common_broadcast_notice($notice, $remote=false) function common_enqueue_notice($notice) { static $localTransports = array('omb', - 'twitter', 'facebook', 'ping'); -- cgit v1.2.3-54-g00ecf From 2544310e7391343ab655469ef6ac68bbe8ab0a5b Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Fri, 23 Oct 2009 23:34:48 +0000 Subject: Remove automatic enqueuing for Facebook --- lib/util.php | 1 - 1 file changed, 1 deletion(-) (limited to 'lib/util.php') diff --git a/lib/util.php b/lib/util.php index 55ded7dd4..b6e89f0bd 100644 --- a/lib/util.php +++ b/lib/util.php @@ -906,7 +906,6 @@ function common_broadcast_notice($notice, $remote=false) function common_enqueue_notice($notice) { static $localTransports = array('omb', - 'facebook', 'ping'); static $allTransports = array('sms', 'plugin'); -- cgit v1.2.3-54-g00ecf