We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Created by Frank Förster, 25th Aug 2012. (originally Lighthouse ticket #88):
What to expect
On an OS that uses the backslash "" as directory separator, the fileLink helper function of the ApiDoc Helper should return a link like this:
http://path_to_cake_app/file/Controller/AppController.php
What happened
Instead it returns the links like this:
http://path_to_cake_app/file/Controller\AppController.php
What I did
Replace the backslash with forward slash after line 122
$trimmedFile = preg_replace('/\\\/', '/', $trimmedFile);
Created by Frank Förster, 25th Aug 2012. (originally Lighthouse ticket #88):
What to expect
On an OS that uses the backslash "" as directory separator, the fileLink helper function of the ApiDoc Helper should return a link like this:
http://path_to_cake_app/file/Controller/AppController.php
What happened
Instead it returns the links like this:
http://path_to_cake_app/file/Controller\AppController.php
What I did
Replace the backslash with forward slash after line 122