bugzilla%micropipes.com 386e7598b1 fixed bug 332839
git-svn-id: svn://10.0.0.236/trunk@193672 18797224-902f-48f8-a5cc-f745e15eee43
2006-04-06 06:38:27 +00:00

26 lines
419 B
PHP

<?php
/**
* This will delete a session if the user has one.
*
* @package amo
* @subpackage docs
*
*/
startProcessing('logout.tpl', null, null, 'nonav');
require_once 'includes.php';
session_start();
$_auth->removeUsernameCookie();
session_destroy();
// Assign template variables.
$tpl->assign(
array( 'title' => 'Firefox Add-ons',
'currentTab' => null
)
);
?>