mirror of
https://github.com/Sarjuuk/aowow.git
synced 2025-11-29 15:58:16 +08:00
13 lines
232 B
PHP
13 lines
232 B
PHP
<?php
|
|
|
|
if (!defined('AOWOW_REVISION'))
|
|
die('illegal access');
|
|
|
|
|
|
$smarty->assign('lang', array_merge(Lang::$main, Lang::$error));
|
|
$smarty->assign('mysql', DB::Aowow()->getStatistics());
|
|
$smarty->display('error.tpl');
|
|
exit();
|
|
|
|
?>
|