Maybe it's because you're not passing 'season' to $html->link(), even if null. Because it's defined in the route, I'll bet that the reverse routing is thrown off when it's missing from the link creation.
On Mon, May 18, 2009 at 5:38 AM, Bogdan I. Bursuc <[email protected]> wrote: > > // routes.php > Router::connect('/:productType/:category/:season', > array('controller' => 'products', 'action' => 'index', 'season' > => null), > array('pass' => array('productType', 'category', 'season'))); > > // view: > > echo $html->link('', array('controller' => 'products', 'action' > => 'index','productType' => $productType, 'category' => > $category)); > > // result: > <a href="/Anvelope Noi/Scutere/:season"/> > > // desired result: > <a href="/Anvelope Noi/Scutere"/> > > I need desired result, instead i get result ? Why is that ? > > > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "CakePHP" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/cake-php?hl=en -~----------~----~----~----~------~----~------~--~---
