From 7b1a37f430cf36ff44542d2cff3f32d33033558f Mon Sep 17 00:00:00 2001 From: Will Rossiter Date: Wed, 7 Jan 2015 22:39:04 +1300 Subject: [PATCH] Use symlink path name (Fixes #58) --- code/DocumentationManifest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/DocumentationManifest.php b/code/DocumentationManifest.php index fd53195..c4245f8 100644 --- a/code/DocumentationManifest.php +++ b/code/DocumentationManifest.php @@ -164,7 +164,7 @@ class DocumentationManifest { public function getRealPath($path) { if(substr($path, 0, 1) != '/') { - $path = realpath(Controller::join_links(BASE_PATH, $path)); + $path = Controller::join_links(BASE_PATH, $path); } return $path;