Show site name on error pages

This commit is contained in:
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");