]> jfr.im git - uguu.git/commitdiff
Create upload-done.php
authorEric Johansson (neku) <redacted>
Wed, 7 Oct 2015 22:29:01 +0000 (00:29 +0200)
committerEric Johansson (neku) <redacted>
Wed, 7 Oct 2015 22:29:01 +0000 (00:29 +0200)
upload-done.php [new file with mode: 0644]

diff --git a/upload-done.php b/upload-done.php
new file mode 100644 (file)
index 0000000..f48802e
--- /dev/null
@@ -0,0 +1,13 @@
+<?php
+require_once "/home/neku/www/page/public/rain/rain.tpl.class.php";
+raintpl::configure( 'path_replace', false);
+raintpl::configure( 'tpl_dir', '/home/neku/www/page/public/rain/template/');
+raintpl::configure( 'cache_dir', '/home/neku/www/page/public/rain/cache/' );
+$tpl = new RainTPL;
+$title = "Temp File Hosting";
+$tpl->assign("title", $title);
+$tpl->draw("header");
+$tpl->assign("filename", $n);
+$tpl->draw("upload-done");
+$tpl->draw("footer");
+?>