]> jfr.im git - uguu.git/commitdiff
Create error_meow.php
authorEric Johansson (neku) <redacted>
Mon, 5 Oct 2015 23:05:00 +0000 (01:05 +0200)
committerEric Johansson (neku) <redacted>
Mon, 5 Oct 2015 23:05:00 +0000 (01:05 +0200)
error_meow.php [new file with mode: 0644]

diff --git a/error_meow.php b/error_meow.php
new file mode 100644 (file)
index 0000000..2bb7264
--- /dev/null
@@ -0,0 +1,12 @@
+<?php
+require_once "rain/rain.tpl.class.php";
+raintpl::configure( 'path_replace', false);
+raintpl::configure( 'tpl_dir', 'rain/template/');
+raintpl::configure( 'cache_dir', 'rain/cache/' );
+$tpl = new RainTPL;
+$title = "Temp File Hosting";
+$tpl->assign("title", $title);
+$tpl->draw("header");
+$tpl->draw("error_meow");
+$tpl->draw("footer");
+?>