From: Zach Copley Date: Mon, 29 Mar 2010 00:00:33 +0000 (-0700) Subject: RSSCloudPlugin's onRouterInitialized() should expect pass by value instead of reference X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=03f670646841025bfb117f14bea12aab70dec4de;p=quix0rs-gnu-social.git RSSCloudPlugin's onRouterInitialized() should expect pass by value instead of reference --- diff --git a/plugins/RSSCloud/RSSCloudPlugin.php b/plugins/RSSCloud/RSSCloudPlugin.php index 9f444c8bba..001106acec 100644 --- a/plugins/RSSCloud/RSSCloudPlugin.php +++ b/plugins/RSSCloud/RSSCloudPlugin.php @@ -105,7 +105,7 @@ class RSSCloudPlugin extends Plugin * @return boolean hook return */ - function onRouterInitialized(&$m) + function onRouterInitialized($m) { $m->connect('/main/rsscloud/request_notify', array('action' => 'RSSCloudRequestNotify'));