2022-09-17 20:50:50 +09:00
|
|
|
<?php
|
2024-09-23 11:07:19 +09:00
|
|
|
include_once "./_common.php";
|
2022-09-17 20:50:50 +09:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @file
|
|
|
|
|
* Clears PHP sessions and redirects to the connect page.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/* Load and clear sessions */
|
|
|
|
|
session_start();
|
|
|
|
|
session_destroy();
|
|
|
|
|
|
|
|
|
|
/* Redirect to page with the connect to Twitter option. */
|
|
|
|
|
header('Location: ./connect.php');
|