Logged In: NO

Sorry, sourceforge munged the post a bit. Here's what that
code block looks like after adding that one line:

case "F" : // create a new file
if (file_exists($path) || !is_writable(dirname($path))) {
$this->Error("Could not write to file or file already
exists", $path) ;
}
touch( $path );
$tstr = $this->self . "?op=details&D=" .$this->rel_dir .
"&F=" . $file;
header("Location: " . $tstr);
exit;

Cheers!