<?php
/**
* just to clear cookie (is easy in seperate file to use in templates)
*
*
* @author hide@address.com
* @version 1.0
* @package TaggingManager
*/
$root_path = './';
include_once($root_path.'config.php');
setcookie("user", FALSE);
setcookie("secret", FALSE);
header("Location: $location");
?>