diff --git a/core/modules/edit/lib/Drupal/edit/EditController.php b/core/modules/edit/lib/Drupal/edit/EditController.php index 7a7d1a6f464a16bb49abdaa94da2c0b6e0a891b3..ea9b1af107ace469794b894b5efacd7803620956 100644 --- a/core/modules/edit/lib/Drupal/edit/EditController.php +++ b/core/modules/edit/lib/Drupal/edit/EditController.php @@ -101,10 +101,13 @@ public function attachments(Request $request) { * The name of the language for which the field is being edited. * @param string $view_mode_id * The view mode the field should be rerendered in. + * @param \Symfony\Component\HttpFoundation\Request $request + * The current request object containing the search string. + * * @return \Drupal\Core\Ajax\AjaxResponse * The Ajax response. */ - public function fieldForm(EntityInterface $entity, $field_name, $langcode, $view_mode_id) { + public function fieldForm(EntityInterface $entity, $field_name, $langcode, $view_mode_id, Request $request) { $response = new AjaxResponse(); $form_state = array( @@ -134,7 +137,7 @@ public function fieldForm(EntityInterface $entity, $field_name, $langcode, $view } // When working with a hidden form, we don't want any CSS or JS to be loaded. - if (isset($_POST['nocssjs']) && $_POST['nocssjs'] === 'true') { + if ($request->request->get('nocssjs') === 'true') { drupal_static_reset('drupal_add_css'); drupal_static_reset('drupal_add_js'); }