some fix
This commit is contained in:
parent
2e4fc0496b
commit
e6455165b3
@ -12,7 +12,6 @@ use kernel\helpers\Files;
|
||||
use kernel\helpers\RESTClient;
|
||||
use kernel\helpers\SMTP;
|
||||
use kernel\Mailing;
|
||||
use kernel\modules\module_shop_client\services\ModuleShopClientService;
|
||||
use kernel\Request;
|
||||
use kernel\services\KernelService;
|
||||
use kernel\services\ModuleService;
|
||||
|
@ -59,9 +59,9 @@ class KernelService
|
||||
Debug::dd($files);
|
||||
|
||||
$zip = new ZipArchive;
|
||||
if (file_exists($path)) {
|
||||
if (file_exists(ROOT_DIR . $path)) {
|
||||
$tmpKernelDir = md5(time());
|
||||
$res = $zip->open($path);
|
||||
$res = $zip->open(ROOT_DIR . $path);
|
||||
if ($res === TRUE) {
|
||||
$tmpKernelDirFull = RESOURCES_DIR . '/tmp/kernel/' . $tmpKernelDir . "/";
|
||||
$zip->extractTo($tmpKernelDirFull);
|
||||
|
Loading…
Reference in New Issue
Block a user