Re: custom route conflicting/messing with $paginator->next()

2009-09-17 Thread WebbedIT
Update: I had to change my routes from what I have above to ... Router::connect('/', array('controller' => 'pages', 'action' => 'display', 'home')); Router::connect('/login', array('controller' => 'users', 'action' => 'login')); Router::connect('/logout', array('controller' => 'users', 'action'

custom route conflicting/messing with $paginator->next()

2009-09-17 Thread WebbedIT
Demo page: http://jdphotographer.co.uk/v2/portfolio I am using pagination to show the thumbs at the bottom of this page and the following to echo my 'next' link $paginator->next('>>', array('tag'=>'li', 'class'=>'nav next'), null, null); Rather than producing: /v2/portfolio/page:2 This is pr