View Issue Details

IDProjectCategoryView StatusLast Update
0004216mantisbtfilterspublic2004-08-29 02:15
Reportervboctor Assigned Tovboctor  
PriorityhighSeverityblockReproducibilityalways
Status closedResolutionno change required 
Product Versiongit trunk 
Summary0004216: Unable to setup a filter
Description

I have an installation which is using the latest CVS code. When I attempt to filter the issues by setting any of the filter parameters (eg: category, status, ...etc), my settings are not reflected into the View Issues page, where the filter is shown as "any" for such entries.

This does not happen on my development installation (although it has another issue where it returns one row per page, but that is covered in another issue).

The only different that I can think of is that the Mantis installation that has the problem lives in a folder that is protected by http user name / password. However, Mantis still has its own login and authentication (standard method).

TagsNo tags attached.

Relationships

child of 0003987 closedvboctor Mantis 0.19.0 Release 

Activities

vboctor

vboctor

2004-07-29 00:29

manager   ~0006433

Some more information:

  • Windows IIS server (not sure about the version).
  • Windows Client
  • Mozilla FireFox / Internet Explorer browsers.
vboctor

vboctor

2004-07-29 22:31

manager   ~0006467

Last edited: 2004-07-29 22:35

I found out that this was due to the config_inc.php being copied from config_defaults_inc.php then modified. The problem is that the copied defaults were those of Mantis 0.18.3 which were using cookies version 4. So it seems that cookies were saved as v4 with v5 format, which caused them to be ignored.

The fix for the 1 issue per page result set 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' );
}

edited on: 07-29-04 22:35