Hello,
i’am using cakePHP 2.10.22.
I used to build url like this:
$this->Html->url(array("controller"=>"Actuses","action"=>"index"))
But when i use a plugin like this:
$this->Html->url(array("controller"=>"tasks","action"=>"index","plugin"=>"task_manager"))
If i ‘click’ on the followed link i go to the index page of my plugin, but all my other link became corrupt.
So i need to transform all my other link with attribute “plugin”=>false
if I have to put it on all the links that do not use plugin, why is it not done by default?