]> jfr.im git - uguu.git/blob - error.php
Adding options in the config file
[uguu.git] / error.php
1 <?php
2 require_once "rain/rain.tpl.class.php";
3
4 raintpl::configure( 'path_replace', false);
5 raintpl::configure( 'tpl_dir', 'rain/template/');
6 raintpl::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
16 $tpl->draw("footer");
17 ?>