View Issue Details

IDProjectCategoryView StatusLast Update
0004212mantisbtfilterspublic2004-08-29 02:15
Reporterfman Assigned Tovboctor  
PrioritynormalSeveritytweakReproducibilityalways
Status closedResolutionfixed 
Product Version0.19.0a2 
Fixed in Version0.19.0rc1 
Summary0004212: Default for Quantity is 0 -> N pages needed to display N issues
Description

When you set a filter, because the default value for quantity
is 0 you get only 1 issue per page.
Without a filter you get more lines.

I think the default value must be setted to the same value
used with no filter applied

TagsNo tags attached.

Relationships

child of 0003987 closedvboctor Mantis 0.19.0 Release 

Activities

vboctor

vboctor

2004-07-29 22:34

manager   ~0006468

The fix is as follows:

In view_all_set.php:

# show bugs per page
if ( $f_per_page < 0 ) {
    $f_per_page = config_get( 'default_limit_view' );
}

should be replaced by:

# show bugs per page
if ( $f_per_page < 1 ) {
    $f_per_page = config_get( 'default_limit_view' );
}