X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Ffolders_subscribe.php;h=156c18ac64c7c2c7a7c07efd668bf3830818a79e;hb=bb9773940a9f9f8f13922c065f591d1d7379328e;hp=75efb8c4570bfb592b64b79bbeea2c3d9887972e;hpb=76911253eb850bacde3d86c8cb7b4af072e67ebe;p=squirrelmail.git diff --git a/src/folders_subscribe.php b/src/folders_subscribe.php index 75efb8c4..156c18ac 100644 --- a/src/folders_subscribe.php +++ b/src/folders_subscribe.php @@ -3,31 +3,34 @@ /** * folders_subscribe.php * - * Copyright (c) 1999-2003 The SquirrelMail Project Team + * Copyright (c) 1999-2004 The SquirrelMail Project Team * Licensed under the GNU GPL. For full terms see the file COPYING. * * Subscribe and unsubcribe from folders. * Called from folders.php * - * $Id$ + * @version $Id$ + * @package squirrelmail */ -/* Path for SquirrelMail required files. */ +/** + * Path for SquirrelMail required files. + * @ignore + */ define('SM_PATH','../'); /* SquirrelMail required files. */ require_once(SM_PATH . 'include/validate.php'); +require_once(SM_PATH . 'functions/global.php'); require_once(SM_PATH . 'functions/imap.php'); require_once(SM_PATH . 'functions/display_messages.php'); /* globals */ -$username = $_SESSION['username']; -$key = $_COOKIE['key']; -$onetimepad = $_SESSION['onetimepad']; - -$method = $_GET['method']; -$mailbox = $_POST['mailbox']; - +sqgetGlobalVar('key', $key, SQ_COOKIE); +sqgetGlobalVar('username', $username, SQ_SESSION); +sqgetGlobalVar('onetimepad',$onetimepad, SQ_SESSION); +sqgetGlobalVar('method', $method, SQ_GET); +sqgetGlobalVar('mailbox', $mailbox, SQ_POST); /* end globals */ $location = get_location();