16 lines
357 B
PHP
16 lines
357 B
PHP
<?php
|
|
|
|
include_once 'classes/lg-on_Smarty.class.php';
|
|
$smarty = new lgon_Smarty();
|
|
require_once("config.inc.php");
|
|
$templatename = substr(basename($_SERVER['PHP_SELF']),0,-3)."html";
|
|
require_once "language/german.inc.php";
|
|
|
|
if($user_admin == "")
|
|
{
|
|
echo "Bitte melden Sie sich erst am System an!";
|
|
exit;
|
|
}
|
|
|
|
$smarty->display("$template/$templatename");
|
|
?>
|