- Issue created by @promes
- Merge request !57Issue #3522379: Fix undefined 'reset_map' key warning. → (Open) created by Unnamed author
I get this warning: Undefined array key "reset_map" in Drupal\leaflet\LeafletService->leafletRenderMap() (line 157 of /drupal/web/modules/contrib/leaflet/src/LeafletService.php)
Solution:
change:
if (is_array($map['settings']['reset_map']) && array_key_exists('control', $map['settings']['reset_map']) && $map['settings']['reset_map']['control']) {
into:
if (isset($map['settings']['reset_map']) && is_array($map['settings']['reset_map']) && array_key_exists('control', $map['settings']['reset_map']) && $map['settings']['reset_map']['control']) {
Active
10.2
Code