瀏覽代碼

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;
             $end_loop = $num_msgs - $start_msg + 1;
         } else {
         } else {
             $end_loop = $show_num;
             $end_loop = $show_num;
-        }        return fillMessageArray($imapConnection,$id,$end_loop,$show_num);
+        }
+        return fillMessageArray($imapConnection,$id,$end_loop,$show_num);
     } else {
     } else {
         return false;
         return false;
     }
     }
@@ -345,7 +346,8 @@ function getSelfSortMessages($imapConnection, $start_msg, $show_num,
             } else {
             } else {
                 $end_loop = $show_num;
                 $end_loop = $show_num;
             }
             }
-        }        $msgs = fillMessageArray($imapConnection,$id,$end_loop, $show_num);
+        }
+        $msgs = fillMessageArray($imapConnection,$id,$end_loop, $show_num);
     }
     }
     return $msgs;
     return $msgs;
 }
 }