Index: view_all_inc.php
===================================================================
--- view_all_inc.php (revision 156)
+++ view_all_inc.php (working copy)
@@ -38,6 +38,8 @@
list( $t_dir, ) = split( ',', $t_filter['dir'] );
}
+ $f_filter = gpc_get_int( 'filter', 0 );
+
$t_checkboxes_exist = false;
$t_icon_path = config_get( 'icon_path' );
@@ -103,21 +105,20 @@
|
Index: print_all_bug_page.php
===================================================================
--- print_all_bug_page.php (revision 156)
+++ print_all_bug_page.php (working copy)
@@ -44,6 +44,7 @@
$f_search = gpc_get_string( 'search', false ); # @@@ need a better default
$f_offset = gpc_get_int( 'offset', 0 );
+ $f_filter = gpc_get_int( 'filter', 0 );
$t_cookie_value_id = gpc_get_cookie( config_get( 'view_all_cookie' ), '' );
$t_cookie_value = filter_db_get_filter( $t_cookie_value_id );
@@ -142,6 +143,7 @@
array( 'print_all_bug_page_word', 'word', '', 'fileicons/doc.gif', 'Word 2000' ),
array( 'print_all_bug_page_word', 'html', 'target="_blank"', 'ie.gif', 'Word View' ) );
+ $t_query_string = ( $f_filter !== 0 ) ? "&filter=" . $f_filter : '';
foreach ( $t_icons as $t_icon ) {
echo '' .
'
';
}