Skip to content
Snippets Groups Projects
Commit 472b5ca1 authored by Andreas Gohr's avatar Andreas Gohr
Browse files

removed commented out code

parent 56bf57c6
No related branches found
No related tags found
No related merge requests found
......@@ -311,24 +311,6 @@ function init_files(){
}
}
}
# create title index (needs to have same length as page.idx)
/*
$file = $conf['indexdir'].'/title.idx';
if(!file_exists($file)){
$pages = file($conf['indexdir'].'/page.idx');
$pages = count($pages);
$fh = @fopen($file,'a');
if($fh){
for($i=0; $i<$pages; $i++){
fwrite($fh,"\n");
}
fclose($fh);
}else{
nice_die("$file is not writable. Check your permissions settings!");
}
}
*/
}
/**
......
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