. /** * @package MantisBT * @copyright Copyright (C) 2000 - 2002 Kenzaburo Ito - kenito@300baud.org * @copyright Copyright (C) 2002 - 2014 MantisBT Team - mantisbt-dev@lists.sourceforge.net * @link http://www.mantisbt.org */ /** * MantisBT Core API's */ require_once( 'core.php' ); require_once( 'compress_api.php' ); require_once( 'filter_api.php' ); require_once( 'current_user_api.php' ); require_once( 'bug_api.php' ); require_once( 'string_api.php' ); require_once( 'date_api.php' ); require_once( 'rss_api.php' ); auth_ensure_user_authenticated(); $t_query_arr = filter_db_get_available_queries(); # Special case: if we've deleted our last query, we have nothing to show here. if ( count( $t_query_arr ) < 1 ) { print_header_redirect( 'view_all_bug_page.php' ); } compress_enable(); html_page_top(); $t_rss_enabled = config_get( 'rss_enabled' ); ?>
$t_name ) { if ( $t_column_count == 0 ) { print ''; } print ''; $t_column_count++; if ( $t_column_count == $t_max_column_count ) { print ''; $t_column_count = 0; } } # Tidy up this row if ( ( $t_column_count > 0 ) && ( $t_column_count < $t_max_column_count ) ) { for ( $i = $t_column_count; $i < $t_max_column_count; $i++ ) { print ''; } print ''; } ?>
'; if ( OFF != $t_rss_enabled ) { # Use the "new" RSS link style. print_rss( rss_get_issues_feed_url( null, null, $t_id ), lang_get( 'rss' ) ); echo ' '; } $t_query_id = db_prepare_int( $t_id ); print_link( "view_all_set.php?type=3&source_query_id=$t_query_id", $t_name ); if ( filter_db_can_delete_filter( $t_id ) ) { echo ' '; print_button( "query_delete_page.php?source_query_id=$t_query_id", lang_get( 'delete_query' ) ); } print '