From 97876814d7f47f9ea38c1cd97cb8bd73191fa9c4 Mon Sep 17 00:00:00 2001 From: fidian Date: Mon, 25 Jun 2001 16:15:34 +0000 Subject: [PATCH] I neglected to make these two values globals. git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@1420 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- src/read_body.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/read_body.php b/src/read_body.php index 78cf9ba5..28733de0 100644 --- a/src/read_body.php +++ b/src/read_body.php @@ -114,7 +114,8 @@ // returns the index of the previous message from the array function findPreviousMessage() { - global $msort, $currentArrayIndex, $sort, $msgs, $imapConnection, $mailbox; + global $msort, $currentArrayIndex, $sort, $msgs, $imapConnection, + $mailbox, $data_dir, $username; if ($sort == 6) { $numMessages = sqimap_get_num_messages($imapConnection, $mailbox); if ($currentArrayIndex != $numMessages) { -- 2.25.1