mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-13 10:25:01 +00:00
10 lines
192 B
PHP
Executable File
10 lines
192 B
PHP
Executable File
<?php
|
|
require"core/sessionconfig.php";
|
|
|
|
session_unset();
|
|
session_destroy();
|
|
|
|
$return_path="developers/index.php?logout=true";
|
|
|
|
header("Location: http://$_SERVER[SERVER_NAME]/$return_path");
|
|
?>
|