From 26c171199434c37d4333371b0409c8e541429cb0 Mon Sep 17 00:00:00 2001 From: Edward Simpson Date: Wed, 15 Apr 2020 14:58:38 +1200 Subject: [PATCH] Fixing exception catch var dump --- Controller/Adminhtml/Settings/Index.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Controller/Adminhtml/Settings/Index.php b/Controller/Adminhtml/Settings/Index.php index ffe3113..bb03d47 100644 --- a/Controller/Adminhtml/Settings/Index.php +++ b/Controller/Adminhtml/Settings/Index.php @@ -66,7 +66,7 @@ public function execute(){ } catch(\Exception $ex) { - var_dump($ex.getMessage); + var_dump($ex->getMessage()); } } } @@ -81,4 +81,4 @@ protected function _isAllowed() { return $this->_authorization->isAllowed('PCAPredict_Tag::Settings'); } -} \ No newline at end of file +}