소스 검색

Revert this part back, funny thing is that I never changed it in my local copy...

Jimmy Conner 22 년 전
부모
커밋
8e322c5909
1개의 변경된 파일4개의 추가작업 그리고 2개의 파일을 삭제
  1. 4 2
      functions/mailbox_display.php

+ 4 - 2
functions/mailbox_display.php

@@ -295,7 +295,8 @@ function getServerMessages($imapConnection, $start_msg, $show_num, $num_msgs, $i
             $end_loop = $num_msgs - $start_msg + 1;
         } else {
             $end_loop = $show_num;
-        }        return fillMessageArray($imapConnection,$id,$end_loop,$show_num);
+        }
+        return fillMessageArray($imapConnection,$id,$end_loop,$show_num);
     } else {
         return false;
     }
@@ -345,7 +346,8 @@ function getSelfSortMessages($imapConnection, $start_msg, $show_num,
             } else {
                 $end_loop = $show_num;
             }
-        }        $msgs = fillMessageArray($imapConnection,$id,$end_loop, $show_num);
+        }
+        $msgs = fillMessageArray($imapConnection,$id,$end_loop, $show_num);
     }
     return $msgs;
 }