Fix typo in ConfigController::moduleenableAction()

This commit is contained in:
Johannes Meyer 2014-10-24 13:49:49 +02:00
parent d90d6fe6a9
commit ffc69c378c
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ class ConfigController extends ActionController
Notification::success(sprintf($this->translate('Module "%s" enabled'), $module)); Notification::success(sprintf($this->translate('Module "%s" enabled'), $module));
$this->rerenderLayout()->reloadCss()->redirectNow('config/modules'); $this->rerenderLayout()->reloadCss()->redirectNow('config/modules');
} catch (Exception $e) { } catch (Exception $e) {
$this->view->exceptionMesssage = $e->getMessage(); $this->view->exceptionMessage = $e->getMessage();
$this->view->moduleName = $module; $this->view->moduleName = $module;
$this->view->action = 'enable'; $this->view->action = 'enable';
$this->render('module-configuration-error'); $this->render('module-configuration-error');