diff options
author | Craig Andrews <candrews@integralblue.com> | 2009-12-03 19:59:31 -0500 |
---|---|---|
committer | Craig Andrews <candrews@integralblue.com> | 2009-12-03 19:59:31 -0500 |
commit | 35ff3961e8a51e41517d8a8b9e5a1a21f826e4ca (patch) | |
tree | cda7d1847d5f72f45d26368662187a01e3c993ec /plugins/Mapstraction/MapstractionPlugin.php | |
parent | 567bd6c0c2739545525df0fe0cb0d7f5032e9864 (diff) |
Remove unnecessary pass by reference indicators
Diffstat (limited to 'plugins/Mapstraction/MapstractionPlugin.php')
-rw-r--r-- | plugins/Mapstraction/MapstractionPlugin.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Mapstraction/MapstractionPlugin.php b/plugins/Mapstraction/MapstractionPlugin.php index ca1a3bf20..c4f9cd77d 100644 --- a/plugins/Mapstraction/MapstractionPlugin.php +++ b/plugins/Mapstraction/MapstractionPlugin.php @@ -58,12 +58,12 @@ class MapstractionPlugin extends Plugin * * The way to register new actions from a plugin. * - * @param Router &$m reference to router + * @param Router $m reference to router * * @return boolean event handler return */ - function onRouterInitialized(&$m) + function onRouterInitialized($m) { $m->connect(':nickname/all/map', array('action' => 'allmap'), |