Commit 7d3b6501 authored by Jacob Rockowitz's avatar Jacob Rockowitz
Browse files

Issue #3322908: Make sure that the referenced value variable is unset after...

Issue #3322908: Make sure that the referenced value variable is unset after the loop in WebformHelpManager.php
parent 4019486e
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -2363,8 +2363,8 @@ class WebformHelpManager implements WebformHelpManagerInterface {
    /* ********************************************************************** */

    // Initialize help.
    foreach ($help as $id => &$help_info) {
      $help_info += [
    foreach (array_keys($help) as $id) {
      $help[$id] += [
        'id' => $id,
        'reset_version' => FALSE,
      ];