I have the following link:
$this->Html->link('admin',array('admin'=>true,'controller'=>'users','action'=>'login','?'=>array('continue'=>$this->here)))
Which should produce a link like: http://domain.com/admin/login?continue=/location
However it always escapes the / so I get a link like: http://domain.com/admin/login?continue=%2Flocation
How do I stop this? I tried array('escape'=>false) in the link but that only escapes the link itself rather than the href.
http://domain.com/admin/login/continue:/location/