Revert this part back, funny thing is that I never changed it in my local copy...
authorcigamit <cigamit@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Fri, 18 Jul 2003 03:03:11 +0000 (03:03 +0000)
committercigamit <cigamit@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Fri, 18 Jul 2003 03:03:11 +0000 (03:03 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@5331 7612ce4b-ef26-0410-bec9-ea0150e637f0

functions/mailbox_display.php

index 546e0b6644859776225b94f0f54c7bb56f28c394..7fb198930a59c88eb172142c4f33586690888a7a 100644 (file)
@@ -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;
 }