X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Fsignout.php;h=4eafe7af716d5e1980c9ffb2a8e2a0e488188f7a;hb=b4d528823ec03ff0482dd244a4186e06a0bdd001;hp=655b2660610928c2b5d6e5808cd665e8d21bd7e6;hpb=6e515418431c0a99f10705da21366fe7093f95b6;p=squirrelmail.git diff --git a/src/signout.php b/src/signout.php index 655b2660..4eafe7af 100644 --- a/src/signout.php +++ b/src/signout.php @@ -5,12 +5,15 @@ * * Cleans up after the user. Resets cookies and terminates session. * - * @copyright © 1999-2006 The SquirrelMail Project Team + * @copyright 1999-2016 The SquirrelMail Project Team * @license http://opensource.org/licenses/gpl-license.php GNU Public License * @version $Id$ * @package squirrelmail */ +/** This is the signout page */ +define('PAGE_NAME', 'signout'); + /** * Include the SquirrelMail initialization file. */ @@ -29,12 +32,6 @@ if (!isset($frame_top)) { $frame_top = '_top'; } -/* If a user hits reload on the last page, $base_uri isn't set - * because it was deleted with the session. */ -if (! sqgetGlobalVar('base_uri', $base_uri, SQ_SESSION) ) { - $base_uri = sqm_baseuri(); -} - $login_uri = 'login.php'; do_hook('logout', $login_uri); @@ -57,7 +54,9 @@ if ( !isset($oTemplate) || !is_object($oTemplate) ) { $oTemplate = Template::construct_template($sTemplateID); // We want some variables to always be available to the template - $always_include = array('sTemplateID', 'icon_theme_path', 'javascript_on'); + $oTemplate->assign('javascript_on', checkForJavascript()); + $oTemplate->assign('base_uri', sqm_baseuri()); + $always_include = array('sTemplateID', 'icon_theme_path'); foreach ($always_include as $var) { $oTemplate->assign($var, (isset($$var) ? $$var : NULL)); }