]> jfr.im git - uguu.git/blame - error.php
Update core.php
[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
16
17$tpl->draw("footer");
18?>