Skip to content

Commit

Permalink
XHTML validation fix.
Browse files Browse the repository at this point in the history
some <input> tags in a form were direct child of a <table>


git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@4451 f5dc347c-c33d-0410-90a0-b07cc1902cb9
  • Loading branch information
giallu committed Jul 18, 2007
1 parent 3ed7f3c commit a69d1ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/filter_api.php
Expand Up @@ -6,7 +6,7 @@
# See the README and LICENSE files for details

# --------------------------------------------------------
# $Id: filter_api.php,v 1.155 2007-05-27 22:31:59 giallu Exp $
# $Id: filter_api.php,v 1.156 2007-07-18 21:02:05 giallu Exp $
# --------------------------------------------------------

$t_core_dir = dirname( __FILE__ ).DIRECTORY_SEPARATOR;
Expand Down Expand Up @@ -1486,7 +1486,6 @@ function filter_draw_selection_area2( $p_page_number, $p_for_screen = true, $p_e

<br />
<form method="post" name="filters<?php echo $t_form_name_suffix ?>" id="filters_form<?php echo $t_form_name_suffix ?>" action="<?php PRINT $t_action; ?>">
<table class="width100" cellspacing="1">
<input type="hidden" name="type" value="1" />
<?php
if ( $p_for_screen == false ) {
Expand All @@ -1496,6 +1495,7 @@ function filter_draw_selection_area2( $p_page_number, $p_for_screen = true, $p_e
?>
<input type="hidden" name="page_number" value="<?php PRINT $t_page_number ?>" />
<input type="hidden" name="view_type" value="<?php PRINT $t_view_type ?>" />
<table class="width100" cellspacing="1">

<?php
$t_filter_cols = config_get( 'filter_custom_fields_per_row' );
Expand Down

0 comments on commit a69d1ba

Please sign in to comment.