Fehlerkorrekturen

This commit is contained in:
aschwarz
2024-02-29 10:58:13 +01:00
parent 8c10b2753d
commit 0377b47c39
8 changed files with 26 additions and 4 deletions

View File

@ -4,6 +4,9 @@ if (!isset($_SESSION))
{
session_start();
}
if(!isset($_SESSION['global_uid'])) {
header("location:../php/login.php");
}
include_once '../config/smarty.php';
$smarty = new SmartyAdmin();
require_once ("../config/datenbankanbindung.php");
@ -26,4 +29,4 @@ else
}
$smarty->display("$templatename");
?>
?>