Skip to content

Commit

Permalink
Fix #3976: Missing filter values in My View page.
Browse files Browse the repository at this point in the history
git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@2629 f5dc347c-c33d-0410-90a0-b07cc1902cb9
  • Loading branch information
narcissus committed Jun 29, 2004
1 parent 0c2abf2 commit 082dccd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion core/filter_api.php
Expand Up @@ -6,7 +6,7 @@
# See the README and LICENSE files for details

# --------------------------------------------------------
# $Id: filter_api.php,v 1.41 2004-06-28 10:13:23 vboctor Exp $
# $Id: filter_api.php,v 1.42 2004-06-29 06:38:36 narcissus Exp $
# --------------------------------------------------------

$t_core_dir = dirname( __FILE__ ).DIRECTORY_SEPARATOR;
Expand Down Expand Up @@ -51,6 +51,7 @@ function filter_get_bug_rows( &$p_page_number, &$p_per_page, &$p_page_count, &$p
} else {
$t_filter = $custom_filter;
}
$t_filter = filter_ensure_valid_filter( $t_filter );

if ( false === $t_filter ) {
return false; # signify a need to create a cookie
Expand Down
1 change: 1 addition & 0 deletions doc/ChangeLog
Expand Up @@ -65,6 +65,7 @@ Mantis ChangeLog
* Fix #3937: Custom field filters now only show those values relevant to the selected project.
* Fix #3951: Add Bugnote - Link.
* Fix #3957: IIS had issues with serialised filters in redirects.
* Fix #3976: Missing filter values in My View page.
* New Config: set_view_status_threshold (default REPORTER) - threshold needed to set the view status while reporting a bug / bugnote.
* New Config: change_view_status_threshold (default UPDATER) - threshold needed to update the view status while updating a bug / bugnote.
* New Config: view_handler_threshold (default VIEWER) - threshold needed to view the bug handler (now works for emails only).
Expand Down

0 comments on commit 082dccd

Please sign in to comment.