firefox ignores file upload width attribute :|
This commit is contained in:
parent
287cea7959
commit
a3d77c6f42
1 changed files with 1 additions and 1 deletions
|
@ -313,7 +313,7 @@ class UploadTheme extends Themelet {
|
|||
for($i=0; $i<$upload_count; $i++) {
|
||||
if($i == 0) $style = ""; // "style='display:visible'";
|
||||
else $style = "style='display:none'";
|
||||
$upload_list .= "<input id='data$i' name='data$i' $style onchange=\"$('#data".($i+1)."').show()\" type='file'>\n";
|
||||
$upload_list .= "<input id='data$i' name='data$i' $style onchange=\"$('#data".($i+1)."').show()\" size='16' type='file'>\n";
|
||||
}
|
||||
$max_size = $config->get_int('upload_size');
|
||||
$max_kb = to_shorthand_int($max_size);
|
||||
|
|
Reference in a new issue