Files
Mozilla/mozilla/webtools/addons/public/htdocs/logout.php
bugzilla%micropipes.com d833635216 - Logins (sessions) now work. (There are no links to logout.php, so if you want to
logout you'll have to type it manually)

- Add comment is started, but doesn't actually do any data insertion yet

- We need CSS pretty badly


git-svn-id: svn://10.0.0.236/trunk@188027 18797224-902f-48f8-a5cc-f745e15eee43
2006-01-23 01:24:47 +00:00

24 lines
386 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();
session_destroy();
// Assign template variables.
$tpl->assign(
array( 'title' => 'Firefox Add-ons',
'currentTab' => null
)
);
?>