]> jfr.im git - uguu.git/blame - error.php
Adding options in the config file
[uguu.git] / error.php
CommitLineData
0591f08b
JD
1<?php
2require_once "rain/rain.tpl.class.php";
3
4raintpl::configure( 'path_replace', false);
5raintpl::configure( 'tpl_dir', 'rain/template/');
6raintpl::configure( 'cache_dir', 'rain/cache/' );
7
8$tpl = new RainTPL;
9
10$title = "Temp File Hosting";
11
12$tpl->assign("title", $title);
13$tpl->draw("header");
14$tpl->draw("error");
15
0591f08b 16$tpl->draw("footer");
2f98035a 17?>