From 7f0d25f4146bab98bc88d55ec38df09ef14ceeaf Mon Sep 17 00:00:00 2001 From: Alex Barth <alex_b@53995.no-reply.drupal.org> Date: Tue, 23 Mar 2010 13:14:03 +0000 Subject: [PATCH] #735444 Doug Preble: PubSubHubbub - Fix 'Subscription refused by callback URL' with PHP 5.2.0. --- CHANGELOG.txt | 2 ++ libraries/PuSHSubscriber.inc | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 7f86c730..143ff875 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -4,6 +4,8 @@ Feeds 6.x 1.0 xxxxx xx, 2010-xx-xx ---------------------------------- +- #735444 Doug Preble: PubSubHubbub - Fix "Subscription refused by callback URL" + with PHP 5.2.0. - alex_b: Suppress namespace warnings when parsing feeds for subscription in PuSHSubscriber.inc - #724184 ekes: catch failures when parsing for PubSubHubbub hub and self. diff --git a/libraries/PuSHSubscriber.inc b/libraries/PuSHSubscriber.inc index c1cc4382..3e3b1d32 100644 --- a/libraries/PuSHSubscriber.inc +++ b/libraries/PuSHSubscriber.inc @@ -276,7 +276,7 @@ class PuSHSubscriber { * Helper for loading a subscription. */ protected function loadSubscription() { - return call_user_func("{$this->subscription_class}::load", $this->domain, $this->subscriber_id); + return call_user_func(array($this->subscription_class, 'load'), $this->domain, $this->subscriber_id); } /** -- GitLab