From cc0073c7ae7a34210a85362194103d7c2e9b9c5e Mon Sep 17 00:00:00 2001 From: franck Date: Mon, 10 Jun 2013 16:46:57 +0200 Subject: [PATCH] typo --- core/lib/Thelia/Core/Thelia.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/core/lib/Thelia/Core/Thelia.php b/core/lib/Thelia/Core/Thelia.php index 9505a4fe1..30f2040d8 100644 --- a/core/lib/Thelia/Core/Thelia.php +++ b/core/lib/Thelia/Core/Thelia.php @@ -123,15 +123,15 @@ class Thelia extends Kernel foreach ($modules as $module) { - try { - $loader = new XmlFileLoader($container, new FileLocator(THELIA_MODULE_DIR . "/" . ucfirst($module->getCode()) . "/Config")); - $loader->load("config.xml"); - } - catch(\InvalidArgumentException $e) { - // FIXME: process module configuration exception + try { + $loader = new XmlFileLoader($container, new FileLocator(THELIA_MODULE_DIR . "/" . ucfirst($module->getCode()) . "/Config")); + $loader->load("config.xml"); + } + catch(\InvalidArgumentException $e) { + // FIXME: process module configuration exception + } } } - } /**