> I've just tried this on my new project, and it's great! The only
> problem I've got is that the "prev" and "next" links don't include the
> article:3 parameter. Is there something obvious I'm missing?

After finding the previous discussions of this, I think I've fixed it
by changing the following types of lines of code in my view:

echo $paginator->next('<img src="/img/silk/
control_fastforward_blue.png" />', array('escape' => FALSE), '<img
src="/img/silk/control_fastforward.png" />', array('escape' =>
FALSE));

To the following:

echo $paginator->next('<img src="/img/silk/
control_fastforward_blue.png" />', array('escape' => FALSE, 'url' =>
$this->params['named']), '<img src="/img/silk/
control_fastforward.png" />', array('escape' => FALSE));

In other words, I added this: 'url' => $this->params['named']

Hope that helps others too,
Zoe.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Cake 
PHP" group.
To post to this group, send email to cake-php@googlegroups.com
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to