Browser Problems with E-Classifieds
Seems that some browsers do not support group objects.
Google Chrome for instance has problems with multiple check boxes with the same name.
This has caused problems with E-Classifieds when a person adds a new Classified Ad.
If you have version 2.X and you set the max categories to allow multiple subcategories then it will error.
The error will be a required item was not filled in.
The fix to this is to replece the check boxes with a Select.
The file that we need to edit is under the folder /html/
File name is post_item_form.pl
Line 173 on down to line 178 in this file needs to be replaced with
print qq~<select name="subcategory" multiple=true>~;
foreach $subcategory (@subcategories) {
print qq~ <option>$subcategory</option>~;
}
print qq~</select></td></tr>~;
}
This should fix it.