From 77800601f557b92461f776cad47eceef41c4fd1a Mon Sep 17 00:00:00 2001 From: pdontthink Date: Mon, 6 Apr 2009 07:09:54 +0000 Subject: [PATCH] Fix PHP notices git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@13528 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- plugins/sent_subfolders/functions.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/sent_subfolders/functions.php b/plugins/sent_subfolders/functions.php index 32699de5..d9d44854 100644 --- a/plugins/sent_subfolders/functions.php +++ b/plugins/sent_subfolders/functions.php @@ -20,7 +20,7 @@ define('SMOPT_GRP_SENT_SUBFOLDERS','SENT_SUBFOLDERS'); function sent_subfolders_check_handleAsSent_do($mailbox) { - global $handleAsSent_result; + global $handleAsSent_result, $data_dir, $username; // don't need to bother if it's already special if ($handleAsSent_result) return; @@ -49,8 +49,8 @@ function sent_subfolders_check_handleAsSent_do($mailbox) { */ function sent_subfolders_optpage_loadhook_folders_do() { - global $username, $optpage_data, $imapServerAddress, $imapPort, - $show_contain_subfolders_option; + global $data_dir, $username, $optpage_data, $imapServerAddress, + $imapPort, $show_contain_subfolders_option; /* Get some imap data we need later. */ $imapConnection = sqimap_login($username, false, $imapServerAddress, $imapPort, 0); -- 2.25.1