1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-14 02:24:08 +02:00

Xhtml validation fixes

This commit is contained in:
CaMer0n
2009-06-24 22:19:27 +00:00
parent cfbd2d6ac0
commit a3f846be42
2 changed files with 7 additions and 7 deletions

View File

@@ -11,8 +11,8 @@
| GNU General Public License (http://gnu.org).
|
| $Source: /cvs_backup/e107_0.8/e107_plugins/download/handlers/adminDownload_class.php,v $
| $Revision: 1.2 $
| $Date: 2009-06-24 22:04:37 $
| $Revision: 1.3 $
| $Date: 2009-06-24 22:19:27 $
| $Author: e107coders $
|
+----------------------------------------------------------------------------+
@@ -164,7 +164,7 @@ class adminDownload extends download
{
$checked = (in_array($fcol,$filterColumns)) ? "checked='checked'" : "";
$text .= "<div style='float:left;width:20%;'>";
$text .= "<label for'filter_".$fcol."'><input type='checkbox' name='filter_columns[]' value='".$fcol."' id='filter_".$fcol."' $checked/>".str_replace($replacechar," ",$fcol)."</label>";
$text .= "<label for='filter_".$fcol."'><input type='checkbox' name='filter_columns[]' value='".$fcol."' id='filter_".$fcol."' $checked/>".str_replace($replacechar," ",$fcol)."</label>";
$text .= "</div>\n";
}