Skip to content

Commit

Permalink
* print_all_bug_page.php:
Browse files Browse the repository at this point in the history
   Implemented Julian's recommendations.


git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@2059 f5dc347c-c33d-0410-90a0-b07cc1902cb9
  • Loading branch information
int2str committed Feb 28, 2003
1 parent 4f4cfaa commit 7e8ff19
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions print_all_bug_page.php
Expand Up @@ -198,7 +198,7 @@
$row_count = db_num_rows( $result );

# for export
$t_show_flag = gpc_get( 't_show_flag', 0 );
$t_show_flag = gpc_get_bool( 'show_flag' );
?>
<?php html_page_top1( ) ?>
<?php html_head_end( ) ?>
Expand Down Expand Up @@ -307,7 +307,7 @@
#$t_bug_arr_sort is used for displaying
#$f_export is a string for the word and excel pages

$f_bug_arr = gpc_get( 'bug_arr', NULL );
$f_bug_arr = gpc_get_int_array( 'bug_arr', array() );
$f_bug_arr[$row_count]=-1;

for( $i=0; $i < $row_count; $i++ ) {
Expand Down Expand Up @@ -512,7 +512,7 @@
} # isset_loop
} # for_loop
?>
<input type="hidden" name="t_show_flag" value="1" />
<input type="hidden" name="show_flag" value="1" />
</table>

<br />
Expand Down

0 comments on commit 7e8ff19

Please sign in to comment.