diff --git a/core/module/user/view/profilEdit/profilEdit.php b/core/module/user/view/profilEdit/profilEdit.php index 265f708c..cfd01db7 100644 --- a/core/module/user/view/profilEdit/profilEdit.php +++ b/core/module/user/view/profilEdit/profilEdit.php @@ -152,7 +152,7 @@ 'Dossier', 'class' => 'filemanager', - 'selected' => '.' . $this->getData(['profil', $this->getUrl(2), $this->getUrl(3), 'folder', 'path']) + 'selected' => $this->getData(['profil', $this->getUrl(2), $this->getUrl(3), 'folder', 'path']) ]); ?> diff --git a/core/vendor/filemanager/config/config.php b/core/vendor/filemanager/config/config.php index 4caad592..d91cf554 100644 --- a/core/vendor/filemanager/config/config.php +++ b/core/vendor/filemanager/config/config.php @@ -54,7 +54,7 @@ if (!is_null($u) && !is_null($g) && !is_null($userId)) { if ($g['profil'][$group][$profil]['filemanager'] === false) exit('Accès interdit'); // lecture du profil - if (!is_null($profil)) { + if (!is_null($profil) and $g['profil'][$group][$profil]['folder']['path'] !== '') { $file = $g['profil'][$group][$profil]['file']; $folder = $g['profil'][$group][$profil]['folder']; $uploadDir = $g['profil'][$group][$profil]['folder']['path'];