Files
proxmox-selfservice/qa-tool/htdocs/logout.php
Sven Steinert fce31ebcd7 Viel neues
2026-04-30 12:06:00 +02:00

10 lines
176 B
PHP

<?php
session_start();
$olm = $_SESSION['olm'];
session_destroy();
session_start();
$_SESSION['olm'] = $olm;
$_SESSION['show'] = "50";
header('Location: index.php');
exit();
?>