]> jfr.im git - uguu.git/blame - upload-done.php
Using the footer template
[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);
8f66c23e 11$tpl->assign("retention_time", CONFIG_MAX_RETENTION_TEXT);
58dfa1f7
GJ
12$tpl->draw("upload-done");
13$tpl->draw("footer");
14?>