[Plugin: FireStorm Real Estate Plugin] Missing closing tags & invalid XHTML
-
In the current version (1.02.01), in widget_search.php, on line 53, you need to add a closing tag after the input for the #fsrepws-input div, otherwise it may break the theme.
Also, while we’re in this section of the file, all inputs need to be self-closing, and you ought to change some of your IDs to classes, because several of these divs may be created, and IDs are supposed to be unique. I didn’t bother with that bit on mine, because for now, I’m more concerned with it working than with it validating.
I ended up changing this:
if ($SFields->field_value == '') { echo '<input type="text" name="field-'.$SFields->field_id.'" value="">';
To this:
if ($SFields->field_value == '') { echo '<input type="text" name="field-'.$SFields->field_id.'" value="" /></div>';
https://www.ads-software.com/extend/plugins/firestorm-real-estate-plugin/
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘[Plugin: FireStorm Real Estate Plugin] Missing closing tags & invalid XHTML’ is closed to new replies.