From dbf3883b4988fe65cd954652c6352a9c2d8600bb Mon Sep 17 00:00:00 2001 From: thomppj Date: Sun, 23 Dec 2001 23:08:12 +0000 Subject: [PATCH] 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. git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@1898 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- functions/mailbox_display.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/functions/mailbox_display.php b/functions/mailbox_display.php index d209aa51..1cfeecbe 100644 --- a/functions/mailbox_display.php +++ b/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 == '') { -- 2.25.1