Show site name on error pages

This commit is contained in:
Les De Ridder 2017-02-16 15:17:52 +01:00
부모 e647291435
커밋 9502ca5f18
No known key found for this signature in database
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");