data->key}");
$this->title = $title;
$this->data->noindex = true;
$content = "
$title
\n\n";
while (($file = readdir($handle)) !== false)
{
if (substr($file, 0, 1) == '.') continue;
if (is_dir("$dir$file")) $file .= '/';
$file = html_encode($file);
$content .= "- $file
\n";
}
$content .= "
\n";
$this->data->content = $content;
$this->display_template($this->template_params($content));
}
}