Commit 6d6fc1b1 authored by Taylor Otwell's avatar Taylor Otwell

fix bug in backreference.

parent d4c51147
......@@ -89,7 +89,7 @@ abstract class Controller {
if ($count > 0) unset($parameters[$key]);
}
return array(str_replace('$1', 'index', $method), $parameters);
return array(str_replace('(:1)', 'index', $method), $parameters);
}
/**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment