diff options
Diffstat (limited to 'app')
-rw-r--r-- | app/Controller/DocumentationController.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/Controller/DocumentationController.php b/app/Controller/DocumentationController.php index 2cd49f9e..d41be13c 100644 --- a/app/Controller/DocumentationController.php +++ b/app/Controller/DocumentationController.php @@ -44,6 +44,7 @@ class DocumentationController extends BaseController $data = file_get_contents($filename); $content = preg_replace_callback('/\((.*.markdown)\)/', array($this, 'replaceMarkdownUrl'), $data); $content = preg_replace_callback('/\((screenshots.*\.png)\)/', array($this, 'replaceImageUrl'), $content); + $content = preg_replace_callback('/\((\.\.\/screenshots.*\.png)\)/', array($this, 'replaceImageUrl'), $content); list($title, ) = explode("\n", $data, 2); |