<?php echo zen_draw_textarea_field('comments', '45', '3', $_SESSION['comments'],'accesskey="n"');
^is the "$_SESSION['comments']" part of that dangerous or a security flaw to do?
I want to add the accesskey anchor tag attribute to the comments box in the checkout without "dropping" (overwriting with blank), the comment box context between the shipping page and the payment page...
when I have...
<?php echo zen_draw_textarea_field('comments', '45', '3', ,'accesskey="n"');
or
<?php echo zen_draw_textarea_field('comments', '45', '3', '','accesskey="n"');
it redraws the field as empty, and I loose any form data entered on the first check out step.
Thanks,
b


Reply With Quote

