Version 0.9.5 beta - Core update fixed ? and / parameters for the url, now accepting with and without ending / also containing ?
This commit is contained in:
@@ -48,9 +48,12 @@ final class Dispatcher
|
||||
{
|
||||
$action = $_REQUEST['_action']."Action";
|
||||
$controller->navigationAction();
|
||||
if(method_exists($controller, $action))
|
||||
if($action!="Action" && !strstr($action, '?'))
|
||||
{
|
||||
$controller->$action();
|
||||
if(method_exists($controller, $action))
|
||||
{
|
||||
$controller->$action();
|
||||
}
|
||||
}
|
||||
$controller->pageAction();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user