Browse Source

removed left argument from function. Thnx Paul.

stekkel 22 years ago
parent
commit
4186745b04
1 changed files with 1 additions and 1 deletions
  1. 1 1
      functions/mailbox_display.php

+ 1 - 1
functions/mailbox_display.php

@@ -334,7 +334,7 @@ function getSelfSortMessages($imapConnection, $start_msg, $show_num,
                 $end_loop = $show_num;
             }
         }
-        $msgs = fillMessageArray($imapConnection,$id,$end_loop, $mailbox);
+        $msgs = fillMessageArray($imapConnection,$id,$end_loop);
     }
     return $msgs;
 }