X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Ffolders_subscribe.php;h=dbf1b3a7e8c6abdc9e88bfc723fa5bf79ced4491;hb=f38b7cf06c3343a7fead417d90bd67d291f5dc29;hp=154ea47219a4f25442d4e23e29cf5f77dcc4a557;hpb=b7f83b61539e8952b9b337f167870aa99eb772f8;p=squirrelmail.git diff --git a/src/folders_subscribe.php b/src/folders_subscribe.php index 154ea472..dbf1b3a7 100644 --- a/src/folders_subscribe.php +++ b/src/folders_subscribe.php @@ -3,7 +3,7 @@ /** * folders_subscribe.php * - * Copyright (c) 1999-2002 The SquirrelMail Project Team + * Copyright (c) 1999-2003 The SquirrelMail Project Team * Licensed under the GNU GPL. For full terms see the file COPYING. * * Subscribe and unsubcribe from folders. @@ -17,17 +17,16 @@ 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();