From 2c1872cbdbcd500f1e3ab41f2d5c3adc61535b32 Mon Sep 17 00:00:00 2001 From: philippe_mingo Date: Tue, 9 Oct 2001 10:55:23 +0000 Subject: [PATCH] Bugfix. Single '|' removed. git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@1555 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- functions/mailbox_display.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/functions/mailbox_display.php b/functions/mailbox_display.php index 85f57a99..e8523344 100644 --- a/functions/mailbox_display.php +++ b/functions/mailbox_display.php @@ -382,6 +382,8 @@ } else { $use = 1; } + $lMore = ''; + $rMore = ''; if (($nextGroup <= $numMessages) && ($prevGroup >= 0)) { $lMore = "". _("Previous") . ''; $rMore = "". _("Next") ."\n"; @@ -394,7 +396,8 @@ $lMore = ""._("Previous") . ''; $rMore = "". _("Next") ."\n"; } - $lMore .= ' | '; + if( $lMore <> '' ) + $lMore .= ' | '; // Page selector block. Following code computes page links. $mMore = ''; -- 2.25.1