Beispiel #1
0
 /**
  * Dispatch customer back to PayPal for editing payment information
  */
 public function editAction()
 {
     try {
         $this->getResponse()->setRedirect($this->_config->getExpressCheckoutEditUrl($this->_initToken()));
     } catch (Mage_Core_Exception $e) {
         $this->_getSession()->addError($e->getMessage());
         $this->_redirect('*/*/review');
     }
 }