Fix that the "Viewing message: x (y total)" always had "1 total" on last page,
authorkink <kink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Sat, 7 Aug 2004 19:11:28 +0000 (19:11 +0000)
committerkink <kink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Sat, 7 Aug 2004 19:11:28 +0000 (19:11 +0000)
regardless of how many messages are in the mailbox. Thanks Jo Knox.

git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@7837 7612ce4b-ef26-0410-bec9-ea0150e637f0

functions/mailbox_display.php

index 1f86622e91bea0c121d0a37b211781d543448de4..e9205e261f29392047fba1769fc0dc851f8b6d40 100644 (file)
@@ -1483,7 +1483,7 @@ function get_msgcnt_str($start_msg, $end_msg, $num_msgs) {
         $result = sprintf(_("Viewing Messages: %s to %s (%s total)"),
                         '<b>'.$start_msg.'</b>', '<b>'.$end_msg.'</b>', $num_msgs);
     } else if ($start_msg == $end_msg) {
-        $result = sprintf(_("Viewing Message: %s (1 total)"), '<b>'.$start_msg.'</b>');
+        $result = sprintf(_("Viewing Message: %s (%s total)"), '<b>'.$start_msg.'</b>', $num_msgs);
     } else {
         $result = '<br />';
     }
@@ -2046,4 +2046,5 @@ function attachSelectedMessages($imapConnection,$aMsgHeaders) {
     return $composesession;
 }
 
+// vim: et ts=4
 ?>