Browse Source

Removed warnings that were appearing

Tyler Akins 23 years ago
parent
commit
c3b3fbf763
1 changed files with 2 additions and 2 deletions
  1. 2 2
      functions/mailbox_display.php

+ 2 - 2
functions/mailbox_display.php

@@ -667,7 +667,7 @@
      */
     function get_paginator_str
     ($urlMailbox, $start_msg, $end_msg, $num_msgs, $show_num, $sort) {
-        global $username, $data_dir, $use_mailbox_cache;
+        global $username, $data_dir, $use_mailbox_cache, $color;
 
         $nextGroup = $start_msg + $show_num;
         $prevGroup = $start_msg - $show_num;
@@ -702,7 +702,7 @@
             if ($num_msgs % $show_num <> 0 ) {
                 $j++;
             }
-            $start_msgs = min( $start_msgs, $num_msgs );
+            $start_msg = min( $start_msg, $num_msgs );
             $p = intval( $start_msg / $show_num ) + 1;
             $i = 1;
             while( $i < $p ) {