From fad37219a1bbeb2ef97893560ab5dc2f6ed00474 Mon Sep 17 00:00:00 2001 From: Asturyan Date: Thu, 20 Mar 2014 16:33:36 +0100 Subject: [PATCH] Fix "Undefined variable: ex" --- core/lib/Thelia/Controller/Admin/AbstractSeoCrudController.php | 1 + 1 file changed, 1 insertion(+) diff --git a/core/lib/Thelia/Controller/Admin/AbstractSeoCrudController.php b/core/lib/Thelia/Controller/Admin/AbstractSeoCrudController.php index 0d0fec0eb..db7e853db 100644 --- a/core/lib/Thelia/Controller/Admin/AbstractSeoCrudController.php +++ b/core/lib/Thelia/Controller/Admin/AbstractSeoCrudController.php @@ -168,6 +168,7 @@ abstract class AbstractSeoCrudController extends AbstractCrudController // Error (Default: false) $error_msg = false; + $ex = new \Exception(); // Create the Form from the request $updateSeoForm = $this->getUpdateSeoForm($this->getRequest());