Show site name on error pages

这个提交包含在:
Les De Ridder 2017-02-16 15:17:52 +01:00
父节点 e647291435
当前提交 9502ca5f18
找不到此签名对应的密钥
GPG 密钥 ID: 5EC132DFA85DB372
共有 2 个文件被更改,包括 2 次插入0 次删除

查看文件

@ -10,6 +10,7 @@ $tpl = new RainTPL;
$title = "Temp File Hosting";
$tpl->assign("title", $title);
$tpl->assign("site_name", CONFIG_SITE_NAME);
$tpl->draw("header");
$tpl->draw("error");

查看文件

@ -6,6 +6,7 @@ raintpl::configure( 'cache_dir', 'rain/cache/' );
$tpl = new RainTPL;
$title = "Temp File Hosting";
$tpl->assign("title", $title);
$tpl->assign("site_name", CONFIG_SITE_NAME);
$tpl->draw("header");
$tpl->draw("error_meow");
$tpl->draw("footer");