浏览代码

I neglected to make these two values globals.

Tyler Akins 24 年之前
父节点
当前提交
835d02c8ec
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      src/read_body.php

+ 2 - 1
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) {