Show site name on error pages

Esse commit está contido em:
Les De Ridder 2017-02-16 15:17:52 +01:00
commit 9502ca5f18
Nenhuma chave conhecida encontrada para esta assinatura no banco de dados
ID da chave GPG: 5EC132DFA85DB372
2 arquivos alterados com 2 adições e 0 exclusões

Ver arquivo

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

Ver arquivo

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