[Vtigercrm-commits] [Vtiger development] #8332: Login and setting up card details is breaking in marketplace

Vtiger development vtiger-tickets at trac.vtiger.com
Mon Nov 3 11:10:08 GMT 2014


#8332: Login and setting up card details is breaking in marketplace
------------------------+------------------------
 Reporter:  uma         |       Owner:  developer
     Type:  defect      |      Status:  new
 Priority:  unassigned  |   Milestone:  6.2.0
Component:  vtigercrm   |     Version:  6.1.0
 Severity:  Medium      |  Resolution:
 Keywords:              |
------------------------+------------------------

Comment (by uma):

 Hi,

 While the request to login, in form email-address is sent through wrong
 variable, which is leading to break. Which is updated in latest extension-
 store version 1.1.4.

 As without login upgrade can't be done. Please follow below step for quick
 fix.

 In file layouts/vlayout/modules/Settings/ExtensionStore/Index.tpl within
 form with class loginForm

 Replace this.
 ==================
 <div class="controls">
     {if $REGISTRATION_STATUS}
         <span class="control-label"><span class="pull-
 left">{$USER_NAME}</span></span>
     {else}
        <input type="text" name="emailaddress" data-validation-
 engine="validate[required,
 funcCall[Vtiger_Base_Validator_Js.invokeValidation]]" />
     {/if}
 </div>

 With this.
 ================
 <div class="controls">
     {if $REGISTRATION_STATUS}
         <span class="control-label"><span class="pull-
 left">{$USER_NAME}</span></span>
     {else}
        <input type="text" name="emailAddress" data-validation-
 engine="validate[required,
 funcCall[Vtiger_Base_Validator_Js.invokeValidation]]" />
     {/if}
 </div>

 Where name="emailaddress" is changed to name="emailAddress".

 After this change, reload Extensionstore and signup, which will work. Soon
 after that please upgrade Extensionstore to upgrade for latest extension-
 store

--
Ticket URL: <http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/8332#comment:1>
Vtiger development <http://trac.vtiger.com/>
Vtiger CRM


More information about the vtigercrm-commits mailing list