Merge pull request #106 from nedf23/master

Fixed the ability to change the Docs Path.
This commit is contained in:
Denis Kisselev 2014-01-26 21:49:06 -08:00
commit 340093cd5b
1 changed files with 2 additions and 2 deletions

View File

@ -81,10 +81,10 @@ $url_params = url_params();
if (count($options['languages']) > 0 && count($url_params) > 0 && strlen($url_params[0]) > 0) {
$language = array_shift($url_params);
$base_path = "docs/" . $language;
$base_path = $options['docs_path'] . $language;
} else {
$language = null;
$base_path = "docs";
$base_path = $options['docs_path'];
}
$tree = get_tree($base_path, $base_url, '', true, $language);