a527b8e3 by Dan Rempel

Merge branch 'deploy' of git.gotenzing.com:tenzing/banners-with-skip into deploy

2 parents 0eb52647 4cf3b46d
Showing 1 changed file with 16 additions and 11 deletions
<?php
include_once("config.php");
if(array_key_exists('logout',$_GET))
{
unset($_SESSION['token']);
unset($_SESSION['google_data']); //Google session data unset
$gClient->revokeToken();
session_destroy();
header("Location:index.php");
}
?>
\ No newline at end of file
<?php
include_once("config.php");
if(array_key_exists('logout',$_GET))
{
unset($_SESSION['token']);
unset($_SESSION['google_data']); //Google session data unset
$gClient->revokeToken();
session_destroy();
header("Location:index.php");
}
//test
?>
......