diff --git a/core/lib/Drupal/Core/Form/FormCache.php b/core/lib/Drupal/Core/Form/FormCache.php index 3371944..5313afd 100644 --- a/core/lib/Drupal/Core/Form/FormCache.php +++ b/core/lib/Drupal/Core/Form/FormCache.php @@ -169,8 +169,9 @@ protected function loadCachedFormState($form_build_id, FormStateInterface $form_ require_once $this->root . '/' . $file; } } - // Retrieve the list of previously known safe strings and store it for - // this request. + // Retrieve the previously known list of safe strings and store it for + // this request. The safety of these strings has already been determined + // in ::setCache(). // @todo Ensure we are not storing an excessively large string list // in: https://www.drupal.org/node/2295823 $build_info += ['safe_strings' => []];