]> jfr.im git - uguu.git/blob - upload-done.php
Adding options in the config file
[uguu.git] / upload-done.php
1 <?php
2 require_once "rain/rain.tpl.class.php";
3 raintpl::configure( 'path_replace', false);
4 raintpl::configure( 'tpl_dir', 'rain/template/');
5 raintpl::configure( 'cache_dir', 'rain/cache/' );
6 $tpl = new RainTPL;
7 $title = "Temp File Hosting";
8 $tpl->assign("title", $title);
9 $tpl->draw("header");
10 $tpl->assign("url_filename", CONFIG_ROOT_URL.'/files/'.$n);
11 $tpl->assign("retention_time", CONFIG_MAX_RETENTION_TEXT);
12 $tpl->draw("upload-done");
13 $tpl->draw("footer");
14 ?>