Fix debug log path

Use the SELF var itself without running it through any pathinfo filter
This commit is contained in:
Clemens Schwaighofer
2014-09-30 16:25:22 +09:00
parent deff15cc71
commit b7cfebe558

View File

@@ -826,7 +826,7 @@
if ($strip_ext == 1)
return $page_temp['filename'];
elseif ($strip_ext == 2)
return $page_temp['dirname'].'/'.$page_temp['basename'];
return $_SERVER['PHP_SELF'];
else
return $page_temp['basename'];
}