From 8fcdf8ec02271f6ec66ac80f05c7ccfcbb43cc64 Mon Sep 17 00:00:00 2001 From: Johan Cwiklinski Date: Wed, 7 Oct 2020 06:18:28 +0200 Subject: [PATCH] Fix namespace issue --- galette/lib/Galette/Controllers/PluginsController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/galette/lib/Galette/Controllers/PluginsController.php b/galette/lib/Galette/Controllers/PluginsController.php index a965c2518..20035b1da 100644 --- a/galette/lib/Galette/Controllers/PluginsController.php +++ b/galette/lib/Galette/Controllers/PluginsController.php @@ -321,7 +321,7 @@ class PluginsController extends AbstractController ); $messages['success'][] = $w1 . ' ' . $w2 . ' ' . $w3 . ' ' . $extra; - } catch (Exception $e) { + } catch (\Exception $e) { Analog::log( 'Error executing query | ' . $e->getMessage() . ' | Query was: ' . $query, -- 2.39.2