Skip to content
Snippets Groups Projects
Commit 317a04c4 authored by Satoshi Sahara's avatar Satoshi Sahara
Browse files

remove fullpath() call

fullpath processing here seems unnecessary, wikiFN($ID) returns a valid filepath for the page text file.
parent d5eb2a76
No related branches found
No related tags found
No related merge requests found
......@@ -213,7 +213,7 @@ function pageinfo() {
}
$info['locked'] = checklock($ID);
$info['filepath'] = fullpath(wikiFN($ID));
$info['filepath'] = wikiFN($ID);
$info['exists'] = file_exists($info['filepath']);
$info['currentrev'] = @filemtime($info['filepath']);
if($REV) {
......@@ -227,7 +227,7 @@ function pageinfo() {
msg($lang['nosecedit'], 0);
} else {
//really use old revision
$info['filepath'] = fullpath(wikiFN($ID, $REV));
$info['filepath'] = wikiFN($ID, $REV);
$info['exists'] = file_exists($info['filepath']);
}
}
......
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