diff options
author | Brion Vibber <brion@pobox.com> | 2009-11-20 10:08:13 -0800 |
---|---|---|
committer | Craig Andrews <candrews@integralblue.com> | 2009-11-20 13:57:35 -0500 |
commit | e7663ce38f8eb4d918102351c45a5829a523141b (patch) | |
tree | 0ea8938da27346ff9f56b1bb768f541f0444c787 | |
parent | 09d67d6f80abdf577f6cd94d7be2bc19ce5541fa (diff) |
fix notice bug
-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 a0dbf5204..37306a23c 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'), |