浏览代码

Changed sqimap_get_sort_order call to take three variables

indiri69 23 年之前
父节点
当前提交
7e6f2753f6
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      plugins/delete_move_next/setup.php

+ 2 - 1
plugins/delete_move_next/setup.php

@@ -34,7 +34,8 @@ function fix_sort_array () {
     global $username, $data_dir, $allow_server_sort, $allow_thread_sort,
     $mailbox, $imapConnection, $sort;
     if ($allow_server_sort == true) {
-        $server_sort_array = sqimap_get_sort_order($imapConnection, $sort);
+        $mbxresponse = sqimap_mailbox_select($imapConnection, $mailbox);
+        $server_sort_array = sqimap_get_sort_order($imapConnection, $sort, $mbxresponse);
     }
     $thread_sort_messages = getPref($username, $data_dir, "thread_$mailbox");
     if ($allow_thread_sort == true && $thread_sort_messages == 1) {