Skip to content

Commit

Permalink
Move 'Highlight changed' field in view_filters_page.php
Browse files Browse the repository at this point in the history
  • Loading branch information
dregad committed Feb 13, 2014
1 parent cbe44c0 commit a757541
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions view_filters_page.php
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,6 @@
<th class="small-caption" colspan="<?php echo ( 1 * $t_custom_cols ); ?>"><?php echo lang_get( 'show' ) ?></th>
<th class="small-caption" colspan="<?php echo ( 1 * $t_custom_cols ); ?>"><?php echo lang_get( 'view_status' ) ?></th>
<th class="small-caption" colspan="<?php echo ( 1 * $t_custom_cols ); ?>"><?php echo lang_get( 'sticky' ) ?></th>
<th class="small-caption" colspan="<?php echo ( 1 * $t_custom_cols ); ?>"><?php echo lang_get( 'changed' ) ?></th>
<th class="small-caption" colspan="<?php echo ( 3 * $t_custom_cols ); ?>">
<label>
<input type="checkbox" id="use_date_filters"
Expand All @@ -326,10 +325,9 @@
<?php echo lang_get( 'use_date_filters' )?>
</label>
</th>
<th class="small-caption" colspan="<?php echo ( ( $t_filter_cols -7 ) * $t_custom_cols ); ?>">
<th class="small-caption" colspan="<?php echo ( ( $t_filter_cols -8 ) * $t_custom_cols ); ?>">
<?php echo lang_get( 'bug_relationships' ) ?>
</th>
<!-- <th colspan="<?php echo ( ( $t_filter_cols - 8 ) * $t_custom_cols ); ?>">&#160;</th> -->
</tr>
<tr class="row-1">
<!-- Number of bugs per page -->
Expand All @@ -344,10 +342,6 @@
<td colspan="<?php echo ( 1 * $t_custom_cols ); ?>">
<?php print_filter_sticky_issues(); ?>
</td>
<!-- Highlight changed bugs -->
<td colspan="<?php echo ( 1 * $t_custom_cols ); ?>">
<?php print_filter_highlight_changed(); ?>
</td>
<!-- Date filters -->
<td class="left" colspan="<?php echo ( 3 * $t_custom_cols ); ?>">
<?php print_filter_do_filter_by_date( true ); # hide checkbox as it's already been shown ?>
Expand All @@ -356,7 +350,6 @@
<td colspan="<?php echo ( ( $t_filter_cols - 8 ) * $t_custom_cols ); ?>">
<?php print_filter_relationship_type(); ?>
</td>
<!-- <td colspan="<?php echo ( ( $t_filter_cols - 7 ) * $t_custom_cols ); ?>">&#160;</td> -->
</tr>

<!-- Filter row 4 (custom fields) -->
Expand Down Expand Up @@ -413,17 +406,26 @@
?>

<tr class="row-1">
<!-- Sort by -->
<th class="small-caption category2" colspan="<?php echo ( 1 * $t_custom_cols ); ?>">
<?php echo lang_get( 'sort_label' ) ?>
</th>
<td colspan="<?php echo ( ( $t_filter_cols - 1 - $t_project_cols ) * $t_custom_cols ); ?>">
<td colspan="<?php echo ( 2 * $t_custom_cols ); ?>">
<?php
print_filter_show_sort();
?>
</td>

<!-- Highlight changed bugs -->
<th class="small-caption category2" colspan="<?php echo ( 1 * $t_custom_cols ); ?>"><?php echo lang_get( 'changed' ) ?></th>
<td colspan="<?php echo ( $t_filter_cols - 4 - $t_project_cols ) * $t_custom_cols ; ?>">
<?php print_filter_highlight_changed(); ?>
</td>

<?php
if ( 'advanced' == $f_view_type ) {
?>
<!-- Projects -->
<th class="small-caption category2" colspan="<?php echo ( 1 * $t_custom_cols ); ?>">
<?php echo lang_get( 'email_project_label' ) ?>
</th>
Expand Down

0 comments on commit a757541

Please sign in to comment.