OpenVPN_Management_GUI/Site/logout.php

12 lines
201 B
PHP
Raw Permalink Normal View History

2012-07-16 21:30:19 +02:00
<?php
// Wird ausgeführt um mit der Ausgabe des Headers zu warten.
ob_start ();
session_start ();
session_unset ();
session_destroy ();
header ("Location: /index.php");
ob_end_flush ();
?>