From 83f75a3556c1622e4a055b7dabc6020906f73d35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20B=C3=BCrk?= Date: Mon, 30 Jun 2025 09:33:48 +0200 Subject: [PATCH] [BUGFIX] Use correct namespace in `ext_emconf.php` `ext_emconf.php` contains the php autoloading definition for class mode instances which should be obsolete nower days but kept until final investigated. Due to `copy&pasta` error when creating this extension, the wrong namespace has been left in `ext_emconf.php`, which is now corrected. --- ext_emconf.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext_emconf.php b/ext_emconf.php index 5c4b41f..3bf6ea1 100644 --- a/ext_emconf.php +++ b/ext_emconf.php @@ -23,7 +23,7 @@ ], 'autoload' => [ 'psr-4' => [ - 'WebVision\\Deepltranslate\\Core\\' => 'Classes', + 'WebVision\\Deepl\\Base\\' => 'Classes', ], ], ];