Skip to content

Commit

Permalink
Fix #8453: My View incorrectly handles user vs view filters for sub-p…
Browse files Browse the repository at this point in the history
…rojects.

git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/branches/BRANCH_1_1_0@4630 f5dc347c-c33d-0410-90a0-b07cc1902cb9
  • Loading branch information
amyreese committed Oct 9, 2007
1 parent 2a59f26 commit 7c06970
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion core/my_view_inc.php
Expand Up @@ -6,7 +6,7 @@
# See the README and LICENSE files for details

# --------------------------------------------------------
# $Id: my_view_inc.php,v 1.18 2007-08-22 04:19:22 vboctor Exp $
# $Id: my_view_inc.php,v 1.18.2.1 2007-10-09 20:10:21 nuclear_eclipse Exp $
# --------------------------------------------------------
?>
<?php
Expand All @@ -20,6 +20,7 @@
?>
<?php
$t_filter = current_user_get_bug_filter();
$t_filter = $t_filter === false ? array() : $t_filter;

$t_sort = $t_filter['sort'];
$t_dir = $t_filter['dir'];
Expand Down Expand Up @@ -157,6 +158,7 @@
$url_link_parameters['verify'] = 'reporter_id=' . $t_current_user_id . '&amp;show_status=' . $t_bug_resolved_status_threshold;

$rows = filter_get_bug_rows ( $f_page_number, $t_per_page, $t_page_count, $t_bug_count, $c_filter[$t_box_title] );
$t_filter = array_merge( $c_filter[$t_box_title], $t_filter );

$box_title = lang_get( 'my_view_title_' . $t_box_title );
?>
Expand Down

0 comments on commit 7c06970

Please sign in to comment.