Just figured I would post about a very minor bug that I found today in \zen-cart-v1.3.9a-full-fileset-04192010\includes\templates\template_default\templates\tpl_account_edit_default. php

The issue is that for each input field, the id is placed into the type in the html code. ie <input type="id=&quot;something&quote;"...

In order to fix this minor issue, which from what I tested does not affect the functionality of updating an account, is to change each line of code containing the zen_draw_input_field. See the example below as to how to fix the bug:

original:
<?php echo zen_draw_input_field('firstname', $account->fields['customers_firstname'], 'id="firstname"') . (zen_not_null(ENTRY_FIRST_NAME_TEXT) ? '<span class="alert">' . ENTRY_FIRST_NAME_TEXT . '</span>': ''); ?>

change to:
<?php echo zen_draw_input_field('firstname', $account->fields['customers_firstname'] . ' id="firstname"') . (zen_not_null(ENTRY_FIRST_NAME_TEXT) ? '<span class="alert">' . ENTRY_FIRST_NAME_TEXT . '</span>': ''); ?>

The change is from "], 'id="firstname"'" to "] . ' id="firstname"'".

Have a nice day,

-John
http://www.jdcncsolutions.com/