Avocado.CommunityEdition/AvocadoEdition/plugin/sns/twitter/clearsessions.php

15 lines
277 B
PHP
Raw Normal View History

2022-02-09 03:05:24 +09:00
<?php
include_once("./_common.php");
/**
* @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');