Skip to content
Snippets Groups Projects
Commit 8fc4e739 authored by andi's avatar andi
Browse files

fix for broken realpath on windows #404 #417

darcs-hash:20050624114602-9977f-153f5270fe88112bf347098468ccad03904a645c.gz
parent d7785cce
No related branches found
No related tags found
No related merge requests found
......@@ -91,9 +91,10 @@
*/
function init_path($path){
$p = realpath($path);
if($p) return $p;
if(is_dir($p)) return $p;
$p = realpath(DOKU_INC.$path);
return $p;
if(is_dir($p)) return $p;
return '';
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment