On Thursday 26 December 2002 10:21 pm, Peter Kiem wrote:
> But it is STILL defaulting to a "No" in Domain Lock.
Do you mean the combo box on the template? If you want to default the menu
to "Yes", edit line 1246 of order.cgi from this:
$html{lock_domain_menu} = $MENU->build_select($yn, $in{f_lock_domain});
to this:
$html{lock_domain_menu} = $MENU->build_select($yn, 1);
Alternatively, you can add a hidden input tag to the template
domain/order/order.html:
<input type="hidden" name="f_lock_domain" value="1">
-Regards,
Paul Sisson