svn commit: r899064 - /ofbiz/trunk/specialpurpose/ecommerce/script/org/ofbiz/ecommerce/customer/QuickAnonCustomerEvents.xml

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r899064 - /ofbiz/trunk/specialpurpose/ecommerce/script/org/ofbiz/ecommerce/customer/QuickAnonCustomerEvents.xml

ashish-18
Author: ashish
Date: Thu Jan 14 05:25:25 2010
New Revision: 899064

URL: http://svn.apache.org/viewvc?rev=899064&view=rev
Log:
Fixed Typo - account* & visitor*.
Code formatting.

Modified:
    ofbiz/trunk/specialpurpose/ecommerce/script/org/ofbiz/ecommerce/customer/QuickAnonCustomerEvents.xml

Modified: ofbiz/trunk/specialpurpose/ecommerce/script/org/ofbiz/ecommerce/customer/QuickAnonCustomerEvents.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/ecommerce/script/org/ofbiz/ecommerce/customer/QuickAnonCustomerEvents.xml?rev=899064&r1=899063&r2=899064&view=diff
==============================================================================
--- ofbiz/trunk/specialpurpose/ecommerce/script/org/ofbiz/ecommerce/customer/QuickAnonCustomerEvents.xml (original)
+++ ofbiz/trunk/specialpurpose/ecommerce/script/org/ofbiz/ecommerce/customer/QuickAnonCustomerEvents.xml Thu Jan 14 05:25:25 2010
@@ -35,7 +35,7 @@
         <if-compare field="create_allow_password" operator="not-equals" value="true">
             <set field="parameters.password" from-field="default_user_password"/>
             <set field="parameters.confirmPassword" from-field="default_user_password"/>
-            <set field="parameters.passwordHint" value="No hint set, accout not yet enabled"/>
+            <set field="parameters.passwordHint" value="No hint set, account not yet enabled"/>
         </if-compare>
 
         <!-- if username and/or password should be lowercased, do that now -->
@@ -310,7 +310,7 @@
                     <set-current-user-login value-field="userLoginContext"/>
                 </else>
                 </if-empty>
-            <else><!-- of an anonymous vistor is coming back, update the party id in the userLogin object -->
+            <else><!-- if an anonymous visitor is coming back, update the party id in the userLogin object -->
                 <if-compare field="userLogin.userLoginId" value="anonymous" operator="equals">
                     <set field="userLogin.partyId" from-field="partyId"/>
                 </if-compare>
@@ -593,16 +593,16 @@
 
            <set field="shippingInstruction" from-field="parameters.shipping_instructions" type="String"/>
            <if-not-empty field="shippingInstruction">
-           <call-object-method obj-field="cart" method-name="setShippingInstructions">
-               <field field="shippingInstruction" type="String"/>
-           </call-object-method>
+               <call-object-method obj-field="cart" method-name="setShippingInstructions">
+                   <field field="shippingInstruction" type="String"/>
+               </call-object-method>
            </if-not-empty>
 
            <set field="correspondingPoId" from-field="parameters.correspondingPoId" type="String"/>
            <if-not-empty field="correspondingPoId">
-           <call-object-method obj-field="cart" method-name="setPoNumber">
-               <field field="correspondingPoId" type="String"/>
-           </call-object-method>
+               <call-object-method obj-field="cart" method-name="setPoNumber">
+                   <field field="correspondingPoId" type="String"/>
+               </call-object-method>
            </if-not-empty>
 
            <set field="isGift" from-field="parameters.is_gift" type="Boolean" default-value="false"/>
@@ -612,9 +612,9 @@
 
            <set field="giftMessage" from-field="parameters.gift_message" type="String"/>
            <if-not-empty field="giftMessage">
-           <call-object-method obj-field="cart" method-name="setGiftMessage">
-               <field field="giftMessage" type="String"/>
-           </call-object-method>
+               <call-object-method obj-field="cart" method-name="setGiftMessage">
+                   <field field="giftMessage" type="String"/>
+               </call-object-method>
            </if-not-empty>
        </if-not-empty>
     </simple-method>