diff options
author | Zach Copley <zach@status.net> | 2010-03-28 17:00:33 -0700 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2010-03-28 17:01:16 -0700 |
commit | 03f670646841025bfb117f14bea12aab70dec4de (patch) | |
tree | f7c934c9894ba7d3b6971bda0455f5bbdc3b3bc2 /plugins/RSSCloud/RSSCloudPlugin.php | |
parent | 8fc390e5cb116467074613c977b7d3b6894d03e9 (diff) |
RSSCloudPlugin's onRouterInitialized() should expect pass by value instead of reference
Diffstat (limited to 'plugins/RSSCloud/RSSCloudPlugin.php')
-rw-r--r-- | plugins/RSSCloud/RSSCloudPlugin.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/RSSCloud/RSSCloudPlugin.php b/plugins/RSSCloud/RSSCloudPlugin.php index 9f444c8bb..001106ace 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')); |