From 25e2a90e8475917695a1da7453685d13a22c10eb Mon Sep 17 00:00:00 2001 From: kink Date: Wed, 2 Jul 2003 06:45:36 +0000 Subject: [PATCH] Fix rg issue git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@5187 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- plugins/mail_fetch/fetch.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/mail_fetch/fetch.php b/plugins/mail_fetch/fetch.php index d51fea25..45807588 100644 --- a/plugins/mail_fetch/fetch.php +++ b/plugins/mail_fetch/fetch.php @@ -114,7 +114,8 @@ sqgetGlobalVar('delimiter', $delimiter, SQ_SESSION); ) , 'center', '', 'width="95%" cols="1"' ); - if (!isset( $server_to_fetch ) ) { + // get $server_to_fetch from globals, if not set display a choice to the user + if (! sqgetGlobalVar('server_to_fetch', $server_to_fetch, SQ_POST) ) { Mail_Fetch_Select_Server($mailfetch); exit(); } -- 2.25.1