mirror of
https://github.com/slawkens/myaac.git
synced 2025-04-26 17:29:21 +02:00
14 lines
344 B
PHP
14 lines
344 B
PHP
<?php
|
|
defined('MYAAC') or die('Direct access not allowed!');
|
|
|
|
require(BASE . 'install/includes/config.php');
|
|
if(!$error) {
|
|
require(BASE . 'install/includes/database.php');
|
|
|
|
echo $twig->render('install.admin.html.twig', array(
|
|
'locale' => $locale,
|
|
'session' => $_SESSION,
|
|
'buttons' => next_buttons(true, $error ? false : true)
|
|
));
|
|
}
|
|
?>
|