Procházet zdrojové kódy

Next link moved to sit next to Previous link so that it will always b in the same place on the page, allowing people to NOT have to move their mouse when flipping through their pages of email.

thomppj před 23 roky
rodič
revize
886bac91a4
1 změnil soubory, kde provedl 3 přidání a 3 odebrání
  1. 3 3
      functions/mailbox_display.php

+ 3 - 3
functions/mailbox_display.php

@@ -848,9 +848,9 @@ function get_paginator_str
     $result = '';
     $result .= ($all_str != '' ? $all_str . $spc . $sep . $spc: '');
     $result .= ($prv_str != '' ? $prv_str . $spc . $sep . $spc : '');
-    $result .= ($pg_str != '' ? $pg_str . $sep . $spc : '');
-    $result .= ($nxt_str != '' ? $nxt_str : '');
-    $result .= ($result != '' ? $spc . $sep . $spc . $tgl_str: $tgl_str);
+    $result .= ($nxt_str != '' ? $nxt_str . $spc . $sep . $spc : '');
+    $result .= ($pg_str != '' ? $pg_str : '');
+    $result .= ($result != '' ? $sep . $spc . $tgl_str: $tgl_str);
 
     /* If the resulting string is blank, return a non-breaking space. */
     if ($result == '') {