From 0431010a6520c0588e61e4bf06cda490d490c46d Mon Sep 17 00:00:00 2001 From: touffies Date: Tue, 5 Nov 2013 15:46:38 +0100 Subject: [PATCH] Missing class Translator --- core/lib/Thelia/Form/CustomerProfileUpdateForm.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/lib/Thelia/Form/CustomerProfileUpdateForm.php b/core/lib/Thelia/Form/CustomerProfileUpdateForm.php index 7df0d2da1..c7ebd2c43 100755 --- a/core/lib/Thelia/Form/CustomerProfileUpdateForm.php +++ b/core/lib/Thelia/Form/CustomerProfileUpdateForm.php @@ -23,6 +23,7 @@ namespace Thelia\Form; use Symfony\Component\Validator\ExecutionContextInterface; +use Thelia\Core\Translation\Translator; use Thelia\Model\CustomerQuery; /** @@ -81,6 +82,6 @@ class CustomerProfileUpdateForm extends CustomerCreateForm public function getName() { - return "thelia_customer_profil_update"; + return "thelia_customer_profile_update"; } }