made the fix PHP 5.3 friendly
This commit is contained in:
parent
46aa8a67a9
commit
316c88c90e
@ -28,6 +28,10 @@
|
|||||||
function getfile($tree, $url, $current_dir, $flag = FALSE) {
|
function getfile($tree, $url, $current_dir, $flag = FALSE) {
|
||||||
global $docs_path, $base_doc, $options;
|
global $docs_path, $base_doc, $options;
|
||||||
$url = clean_url($url, "Live", true);
|
$url = clean_url($url, "Live", true);
|
||||||
|
if ($options['clean_urls'] == true) {
|
||||||
|
$url = explode("?", $url);
|
||||||
|
$url = $url[0];
|
||||||
|
}
|
||||||
if ($url === '' || $url === 'index') {
|
if ($url === '' || $url === 'index') {
|
||||||
if (is_file($docs_path . "/index.md")) return $docs_path . "/index.md";
|
if (is_file($docs_path . "/index.md")) return $docs_path . "/index.md";
|
||||||
else {
|
else {
|
||||||
|
Loading…
Reference in New Issue
Block a user