I've just begun to play with 2.4.1 and found a couple of new problems (I won't bother repeating the problems found with 2.4 that are still in 2.4.1). templates/reg_system.biz/main_menu.html: - Fix word ordering (your domain .biz -> your .biz domain) templates/reg_system.biz/add_order.html templates/reg_system.biz/verify_order.html templates/reg_system.info/add_order.html templates/reg_system.info/verify_order.html - The logic for custom_tech_contact was reversed Interestingly enough, the new reg_system.info.cgi and reg_system.biz.cgi scripts are failing when trying to submit an order: The error which occurred was: Error occured while was trying to process your order:Can't register owner contact. Error: Missing required field: owner first_name Missing required field: owner last_name Missing required field: owner org_name Missing required field: owner address1 Missing required field: owner city Missing required field: owner phone Missing required field: owner email Missing required field: owner postal_code Missing required field: owner country Invalid syntax for owner E-Mail Address. Postal code can only contain alphanumeric characters (A-Z and 0-9)Invalid data for owner country code. Those fields are all filled in (and valid) but the order is rejected by both. I'll probably research that over the weekend. --- templates/reg_system.biz/main_menu.html 2001/07/06 04:54:23 1.1.1.1 +++ templates/reg_system.biz/main_menu.html 2001/07/06 06:02:28 @@ -1,5 +1,5 @@ <center> -<BR><font size=+2>Pre-Register Your Domain .biz Today!</font><BR> +<BR><font size=+2>Pre-Register Your .biz Domain Today!</font><BR> <TABLE CELLPADDING="0" border="1"> <FORM ACTION="<TMPL_VAR CGI>" METHOD="POST"> <input type=hidden name=affiliate_id value="<TMPL_VAR affiliate_id>"> --- templates/reg_system.biz/add_order.html 2001/07/06 05:48:20 1.2 +++ templates/reg_system.biz/add_order.html 2001/07/06 06:48:45 @@ -150,7 +150,7 @@ <!-- Billing Contact Finished --> </TD></TR> -<TMPL_UNLESS CUSTOM_TECH_CONTACT> +<TMPL_IF CUSTOM_TECH_CONTACT> <TR><TD align=center > <font size=+1 color=darkgreen><b>Technical Contact Information</FONT></B> </TD></TR> @@ -197,7 +197,7 @@ </TR> </TABLE> </TD></TR> -</TMPL_UNLESS> +</TMPL_IF> <!-- Tech info finished --> <!-- End Of Reused Info for .info --> <TMPL_ELSE> @@ -323,7 +323,7 @@ <!-- Billing Contact Finished --> </TD></TR> -<TMPL_UNLESS CUSTOM_TECH_CONTACT> +<TMPL_IF CUSTOM_TECH_CONTACT> <TR><TD align=center > <font size=+1 color=darkgreen><b>Technical Contact Information</FONT></B> <B>Same as Admin Contact Info:</B> <input type=checkbox name=flag_tech_use_admin value="1" <tmpl_if flag_tech_use_admin> checked</tmpl_if>> @@ -377,7 +377,7 @@ </TABLE> </TD></TR> -</TMPL_UNLESS> +</TMPL_IF> <!-- Tech info finished --> </TABLE> --- templates/reg_system.biz/verify_order.html 2001/07/06 04:54:23 1.1.1.1 +++ templates/reg_system.biz/verify_order.html 2001/07/06 06:48:45 @@ -122,7 +122,7 @@ </TD></TR> </tmpl_if> -<TMPL_UNLESS CUSTOM_TECH_CONTACT> +<TMPL_IF CUSTOM_TECH_CONTACT> <tmpl_if flag_tech_use_admin> <TR><TD align=center > <font size=+1 color=darkgreen><b>Technical Contact Information</FONT></B> @@ -176,7 +176,7 @@ </TABLE> </TD></TR> </TMPL_IF> -</TMPL_UNLESS> +</TMPL_IF> <!-- Tech info finished --> </TABLE> --- templates/reg_system.info/add_order.html 2001/07/06 04:58:30 1.3 +++ templates/reg_system.info/add_order.html 2001/07/06 06:48:45 @@ -152,7 +152,7 @@ <!-- Billing Contact Finished --> </TD></TR> -<TMPL_UNLESS CUSTOM_TECH_CONTACT> +<TMPL_IF CUSTOM_TECH_CONTACT> <TR><TD align=center > <font size=+1 color=darkgreen><b>Technical Contact Information</FONT></B> </TD></TR> @@ -199,7 +199,7 @@ </TR> </TABLE> </TD></TR> -</TMPL_UNLESS> +</TMPL_IF> <!-- Tech info finished --> <!-- End Of Reused Info for .info --> <TMPL_ELSE> @@ -325,7 +325,7 @@ <!-- Billing Contact Finished --> </TD></TR> -<TMPL_UNLESS CUSTOM_TECH_CONTACT> +<TMPL_IF CUSTOM_TECH_CONTACT> <TR><TD align=center > <font size=+1 color=darkgreen><b>Technical Contact Information</FONT></B> <B>Same as Admin Contact Info:</B> <input type=checkbox name=flag_tech_use_admin value="1" <tmpl_if flag_tech_use_admin> checked</tmpl_if>> @@ -379,7 +379,7 @@ </TABLE> </TD></TR> -</TMPL_UNLESS> +</TMPL_IF> <!-- Tech info finished --> </TABLE> --- templates/reg_system.info/verify_order.html 2001/07/06 06:32:12 1.4 +++ templates/reg_system.info/verify_order.html 2001/07/06 06:48:45 @@ -122,7 +122,7 @@ </TD></TR> </tmpl_if> -<TMPL_UNLESS CUSTOM_TECH_CONTACT> +<TMPL_IF CUSTOM_TECH_CONTACT> <tmpl_if flag_tech_use_admin> <TR><TD align=center > <font size=+1 color=darkgreen><b>Technical Contact Information</FONT></B> @@ -176,7 +176,7 @@ </TABLE> </TD></TR> </TMPL_IF> -</TMPL_UNLESS> +</TMPL_IF> <!-- Tech info finished --> </TABLE>