git-svn-id: https://192.168.0.254/svn/Proyectos.Uecko_Web/trunk@2 8c1a5cbb-1905-e346-a7f4-bd4d5d3abd07
13 lines
245 B
PHP
13 lines
245 B
PHP
<?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');
|