[Bug 908] New - IMP3.1 (RC1): mailbox.php : the next page and last page link does not work

bugs@bugs.horde.org bugs@bugs.horde.org
Mon, 18 Mar 2002 08:06:14 -0400


http://bugs.horde.org/show_bug.cgi?id=908

*** shadow/908	Mon Mar 18 08:06:14 2002
--- shadow/908.tmp.23398	Mon Mar 18 08:06:14 2002
***************
*** 0 ****
--- 1,54 ----
+ Bug#: 908
+ Product: Horde
+ Version: other
+ Platform: PHP Code
+ OS/Version: other
+ Status: NEW   
+ Resolution: 
+ Severity: normal
+ Priority: P2
+ Component: IMP
+ Area: BUILD
+ AssignedTo: chuck@horde.org                            
+ ReportedBy: trooster@interstroom.nl               
+ URL: 
+ Summary: IMP3.1 (RC1): mailbox.php : the next page and last page link does not work
+ 
+ The 'next page' and 'last page' link does not work correctly. A small error in 
+ the PHP code. Also the status line in the browser contains alt=, which is not 
+ necessary. (IMP 3.1 RC1)
+ 
+ Here the diff to solve:
+ 
+ diff mailbox.php.dist mailbox_new.php
+ 
+ 484c484
+ <             $pages_first = Horde::link($first_url, 'alt="' . _("First 
+ Page") . '"', 'widget');
+ ---
+ >             $pages_first = Horde::link($first_url, _("First Page"), 'widget');
+ 487c487
+ <             $pages_prev = Horde::link($prev_url, 'alt="' . _("Previous 
+ Page") . '"', 'widget');
+ ---
+ >             $pages_prev = Horde::link($prev_url, _("Previous 
+ Page"), 'widget');
+ 512,513c512,513
+ <             $pages_next = Horde::link($next_url, 'alt="' . _("Next 
+ Page"), 'widget');
+ <             $pages_next .= Horde::img('next.gif', 'alt="' . _("Next Page"));
+ ---
+ >             $pages_next = Horde::link($next_url, _("Next Page"), 'widget');
+ >             $pages_next .= Horde::img('next.gif', 'alt="' . _("Next 
+ Page") . '"');
+ 515c515
+ <             $pages_last = Horde::link($last_url, 'alt="' . _("Last 
+ Page") . '"', 'widget');
+ ---
+ >             $pages_last = Horde::link($last_url, _("Last Page"), 'widget');
+ 
+ 
+ 
+ Kind regards,
+ Joris Trooster
+ Interstroom