소스 검색

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) {