Skip to content

Commit

Permalink
Fixed Undefiend variable error when conroller use _mapping method.
Browse files Browse the repository at this point in the history
  • Loading branch information
ysugimoto committed Sep 20, 2012
1 parent 420e118 commit c16f758
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions seezoo/core/classes/Router.php
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ public function bootController($extraArgs = FALSE)
if ( method_exists($Controller, '_mapping') )
{
// execute mapping method
$Controller->_mapping($this->_method);
$rv = $Controller->_mapping($this->_method);
}
else
{
Expand Down Expand Up @@ -552,4 +552,4 @@ protected function _detectController($segments, $baseDir)
return FALSE;
}
}
}
}

0 comments on commit c16f758

Please sign in to comment.