View Issue Details

IDProjectCategoryView StatusLast Update
0020728mantisbttaggingpublic2016-04-10 12:18
ReporterChowarmaan Assigned Toatrol  
PrioritynormalSeveritymajorReproducibilityalways
Status closedResolutionduplicate 
PlatformChromeOSWindowsOS Version7
Product Version1.2.15 
Summary0020728: View Issues with filters, then remove data, APPLICATION ERROR 0002200 - Stuck there and cannot view issues again
Description

I have multiple tabs open when working with Mantis. I have My View as the first, and then View issues in the second tab, and the issue I am working on in a third tab.

I was editing tags, so I use my View Issues tab to view all issues that had the Tag: Installation and Apply Filter button. One issue listed.

In my third tab I removed the tag from the issue and added a new tag. I then went to manage tags, and deleted the tag completely. There are now no issues with that tag. When I return to my view issues tab, or even select View Issues in any tab, the screen shows the error 2200 and I cannot reset the filter to view issues again.

view_all_bug_page.php only shows the attached screen shot. I cannot seem to reset this.

Issue is similar to 0010082, but the tag no longer exists in the application at this point.

Steps To Reproduce
  1. View issues and filter by Tag: 'Installation'
  2. Select Apply Filter button. One issue listed.
  3. In another tab Remove the tag from the issue.
  4. Delete the tag from the system
  5. Return to View Issues with the old filter still applied.
TagsNo tags attached.
Attached Files
MantisError2200.png (20,553 bytes)   
MantisError2200.png (20,553 bytes)   

Relationships

duplicate of 0020041 closedatrol APPLICATION ERROR 0002200 - Could not find a tag with that name 

Activities

atrol

atrol

2016-03-28 09:16

developer   ~0052888

Does changing file core/filter_api lines 1764+175
from

    $t_tag = tag_get( $c_tag_select );
    $c_tag_string = $t_tag['name'];

to

    if ( tag_exists( $c_tag_select) ) {
        $t_tag = tag_get( $c_tag_select );
        $c_tag_string = $t_tag['name'];
    }

fix the issue?

atrol

atrol

2016-03-28 09:58

developer   ~0052889

Just noticed that I fixed this a while ago, see 0020041.

To fix the issue you can
a) use a nightly build
b) wait for 1.2.20
c) wait for 1.3.x

You can workaround by clearing Mantis cookies in your browser.

Chowarmaan

Chowarmaan

2016-03-28 14:56

reporter   ~0052891

This resolved the issue. I can work without the error now.

Chowarmaan

Chowarmaan

2016-03-28 14:57

reporter   ~0052892

Aside from clearing, you can also use the pop out selection from My View as well on a group of items, which changes the Mantis filter options to get around it as well.