phpgroupware-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Phpgroupware-tracker] [ 100772 ] Email paging/last page problem in RC3


From: nobody
Subject: [Phpgroupware-tracker] [ 100772 ] Email paging/last page problem in RC3
Date: Fri, 06 Dec 2002 19:18:22 -0500

Support Request #100772, was updated on 2002-Apr-19 13:53
You can respond by visiting: 
http://savannah.gnu.org/support/?func=detailsupport&support_id=100772&group_id=509

Category: Bug Report
Status: Closed
Priority: 5
Summary: Email paging/last page problem in RC3

By: alexbsa
Date: 2002-Dec-06 18:18
Logged In: YES 
user_id=3521
Browser: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.2) Gecko/20021128 
Debian/1.2-1

The version mentioned is no longer supported, please upgrade to
the latest version.  If you still experience problems please
report it on our bug tracker at
http://savannah.gnu.org/bugs/?group=phpgroupware

Thanks

----------------------------------------------------------------------

By: kellin
Date: 2002-Apr-19 13:53
Logged In: YES 
user_id=4189
Browser: Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 4.0; T312461; 
DSEBUILD420)

phpgwapi/inc/class.nextmatchs.inc.php
*******************************************************
Line 818 currently reads:
class.nextmatchs.inc.php:818:                   
        $out_vars['start'] = ($feed_vars['total'] -  
$this->maxmatches );

*******************************************************
Line 818 should read:
class.nextmatchs.inc.php:818:                   
        $out_vars['start'] = ($feed_vars['total'] - ( 
( $feed_vars['total'] ) % $this->maxmatches ) );

*******************************************************
This will correctly page the email application to the 
last page without incorrectly assuming that the last 
page start is the end of the message count minus the 
number of messages to be shown.

Each page should start on an evenly divisible numbered 
message. The above correction (only one line) will 
cause this to take effect. I had posted a similar 
solution for the squirrelmail application.

This level of consistency makes the end user much more 
comfortable with browsing back and for because the 
behaviour is consistent with what you would have seen, 
had you paged to the end of the messages, one page at 
a time.

Shamim Islam

----------------------------------------------------------------------
You can respond by visiting: 
http://savannah.gnu.org/support/?func=detailsupport&support_id=100772&group_id=509




reply via email to

[Prev in Thread] Current Thread [Next in Thread]