Better solution for upgrade problems (SAAS-1133)

This commit is contained in:
Albert Santoni 2015-10-20 14:52:17 -04:00
parent 9d4cc6c205
commit 885f47c20e
3 changed files with 8 additions and 22 deletions

View file

@ -187,18 +187,10 @@ class Application_Form_BillingClient extends Zend_Form
$passwordVerify->addValidator('Identical', false, array('token' => 'password2'));
$passwordVerify->addValidator($notEmptyValidator);
$this->addElement($passwordVerify);
/*
$csrf_namespace = new Zend_Session_Namespace('csrf_namespace');
$csrf_element = new Zend_Form_Element_Hidden('csrf');
$csrf_element->setValue($csrf_namespace->authtoken)->setRequired('true')->removeDecorator('HtmlTag')->removeDecorator('Label');
$this->addElement($csrf_element);
$this->addElement('hash', 'csrf', array(
$this->addElement('hash', 'csrf_client', array(
'salt' => 'unique'
));
*/
$submit = new Zend_Form_Element_Submit("submit");
$submit->setIgnore(true)

View file

@ -3,16 +3,9 @@ class Application_Form_BillingUpgradeDowngrade extends Zend_Form
{
public function init()
{
/*
$csrf_namespace = new Zend_Session_Namespace('csrf_namespace');
$csrf_element = new Zend_Form_Element_Hidden('csrf');
$csrf_element->setValue($csrf_namespace->authtoken)->setRequired('true')->removeDecorator('HtmlTag')->removeDecorator('Label');
$this->addElement($csrf_element);
$this->addElement('hash', 'csrf', array(
$this->addElement('hash', 'csrf_upgrade', array( //Needs a unique ID (csrf_upgrade) so it doesn't conflict with other tokens in subforms
'salt' => 'unique'
));
*/
$productPrices = array();
$productTypes = array();