]> jfr.im git - uguu.git/blame - upload-done.php
Adding the public files folder
[uguu.git] / upload-done.php
CommitLineData
58dfa1f7 1<?php
2f98035a 2require_once "rain/rain.tpl.class.php";
58dfa1f7 3raintpl::configure( 'path_replace', false);
2f98035a
PAB
4raintpl::configure( 'tpl_dir', 'rain/template/');
5raintpl::configure( 'cache_dir', 'rain/cache/' );
58dfa1f7
GJ
6$tpl = new RainTPL;
7$title = "Temp File Hosting";
8$tpl->assign("title", $title);
9$tpl->draw("header");
2f98035a 10$tpl->assign("url_filename", CONFIG_ROOT_URL.'/files/'.$n);
58dfa1f7
GJ
11$tpl->draw("upload-done");
12$tpl->draw("footer");
13?>