From 2905cc65984aa757227ff8d3dcfd6b83759dec67 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20T=C3=A4nzer?= Date: Mon, 28 Jun 2010 18:25:07 +0200 Subject: [PATCH] Addendum to 73761fe863463270a9ce13e9211791891cf17d02 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Forgot to also alter the target action for the assurance form Signed-off-by: Michael Tänzer --- manager/application/controllers/ManageAccountController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manager/application/controllers/ManageAccountController.php b/manager/application/controllers/ManageAccountController.php index 0197fd8..361ab5f 100644 --- a/manager/application/controllers/ManageAccountController.php +++ b/manager/application/controllers/ManageAccountController.php @@ -137,7 +137,7 @@ class ManageAccountController extends Zend_Controller_Action protected function getAssuranceForm() { $form = new Zend_Form(); - $form->setAction('/add-points/assurance')->setMethod('post'); + $form->setAction('/manage-account/assurance')->setMethod('post'); $quantity = new Zend_Form_Element_Text('quantity'); $quantity->setRequired(true)