Quote Originally Posted by Lordzoabar View Post
So specifically what file should I be looking at? I just did a fresh upload of the mod, no changes except to the YOUR_TEMPLATE folder names and I'm getting the exact same results.
Sorry... I had to go back to the download and look,, It's not you but I see now its in the tpl_get_quote_default.php code...

line 27 is
Code:
<?php echo zen_draw_form('contact_us', zen_href_link(FILENAME_DEFINE_GET_QUOTE, 'action=send'),'post',' enctype="multipart/form-data" '); ?>
should be
Code:
<?php echo zen_draw_form('contact_us', zen_href_link(FILENAME_GET_QUOTE, 'action=send'),'post',' enctype="multipart/form-data" '); ?>
If you plan on removing the file upload you can remove the
Code:
,' enctype="multipart/form-data"
line too. Only needed for uploading data.