diff --git a/VERSIONS_HOTLINE/60846 b/VERSIONS_HOTLINE/60846
new file mode 100644
index 0000000000000000000000000000000000000000..7beeaafb42462107882ebb4f0cd2fe4214e8f240
--- /dev/null
+++ b/VERSIONS_HOTLINE/60846
@@ -0,0 +1 @@
+ - ticket #60846 : Problème d'édition des boites de la bannière en backoffice
\ No newline at end of file
diff --git a/library/Class/Systeme/Widget/Widget.php b/library/Class/Systeme/Widget/Widget.php
index a23e325cf6ecd7150c118cb01189a2b198b62753..07bb773d82ebb506336ee3d8f298ea1ef1a65a36 100644
--- a/library/Class/Systeme/Widget/Widget.php
+++ b/library/Class/Systeme/Widget/Widget.php
@@ -28,8 +28,9 @@ class Class_Systeme_Widget_Widget extends Class_Systeme_Widget_Abstract {
 
 
   protected function _findLeaf($id) {
-    $cfg = $this->getProfile()->getCfgAccueilAsArray()['modules'];
-    return isset($cfg[$id]) ? $cfg[$id] : [];
+    if ($cfg = $this->getProfile()->getLocalModuleAccueilConfig($id))
+      return $cfg;
+    return [];
   }