I found a workaround...

by adding 'training' => true to all my cake links parameter arrays, it
works.

e.g-
<?php echo $html->link($lesson['title'], array('controller' =>
'lessons', 'action' => 'view', $lesson['id'])); ?>  -- doesn't work,
but should
<?php echo $html->link($lesson['title'], array('training' => true,
'controller' => 'lessons', 'action' => 'view', $lesson['id'])); ?>  --
works, but is not 'cake way'
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to