1
0
mirror of https://github.com/nokonoko/Uguu.git synced 2024-01-06 13:35:15 +00:00

Create error_meow.php

This commit is contained in:
Eric Johansson (neku) 2015-10-06 01:05:00 +02:00
parent af51aa0630
commit c67054219e

12
error_meow.php Normal file
View File

@ -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");
?>