From 4cbcc594b6db6e12a89c21db3df75fe9f125858b Mon Sep 17 00:00:00 2001 From: Kavalar Date: Fri, 24 Jan 2025 14:36:22 +0300 Subject: [PATCH] fix add theme --- app/modules/module_shop/controllers/ThemeShopController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/modules/module_shop/controllers/ThemeShopController.php b/app/modules/module_shop/controllers/ThemeShopController.php index b87afef..9562489 100644 --- a/app/modules/module_shop/controllers/ThemeShopController.php +++ b/app/modules/module_shop/controllers/ThemeShopController.php @@ -58,7 +58,7 @@ class ThemeShopController extends AdminController $zip->extractTo($tmpModuleShopDirFull); $zip->close(); - if (file_exists($tmpModuleShopDirFull . "meta/manifest.json")){ + if (file_exists($tmpModuleShopDirFull . "meta/app/manifest.json")){ $themeInfo = $this->moduleShopService->getModuleInfo($tmpModuleShopDirFull . "meta"); $themeShopForm->load($themeInfo); }