Avocado.CommunityEdition/AvocadoEdition/plugin/sns/twitter/clearsessions.php
TATECK 9c60c33cd6 최초 배포
Ver.02.2.2
2022-02-09 03:05:24 +09:00

14 lines
277 B
PHP

<?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');