Route is recognized but parameters aren't.
In a route definition such as this one:
$router->add('/raw/brand/{brand}', array( 'module' => 'raw', 'controller' => 'brand', 'action' => 'index' ));
The correct module, controller and action fire, but getParams of dispatcher only gives:
array (size=1) '_url' => string '/raw/brand/bmw' (length=14)
Same thing if I use:
$router->add('/raw/brand/([a-zA-Z0-9]*)', array( 'module' => 'raw', 'controller' => 'brand', 'action' => 'index', 'brand' => 1 ));
Am I doing something wrong?