diff --git a/core/modules/views_ui/admin.inc b/core/modules/views_ui/admin.inc index d52b5f02f7..553df4adba 100644 --- a/core/modules/views_ui/admin.inc +++ b/core/modules/views_ui/admin.inc @@ -40,14 +40,14 @@ * cause $form['dynamic_content']['section'] to be refreshed, you would pass * array('dynamic_content', 'section') for this parameter. * - * @deprecated in drupal:9.1.0 and is removed from drupal:10.0.0. There's + * @deprecated in drupal:9.5.0 and is removed from drupal:10.0.0. There's * no public replacement for this function. Form classes can use the * protected method \Drupal\views_ui\ViewsUiFormHelperTrait::addAjaxTrigger(). * * @see https://www.drupal.org/node/3040111 */ function views_ui_add_ajax_trigger(&$wrapping_element, $trigger_key, $refresh_parents) { - @trigger_error("views_ui_add_ajax_trigger() is deprecated in drupal:9.1.0 and is removed from drupal:10.0.0. There's no public replacement for this function. Form classes can use the protected method \\Drupal\\views_ui\\ViewsUiFormHelperTrait::addAjaxTrigger(). See https://www.drupal.org/node/3040111", E_USER_DEPRECATED); + @trigger_error("views_ui_add_ajax_trigger() is deprecated in drupal:9.5.0 and is removed from drupal:10.0.0. There's no public replacement for this function. Form classes can use the protected method \\Drupal\\views_ui\\ViewsUiFormHelperTrait::addAjaxTrigger(). See https://www.drupal.org/node/3040111", E_USER_DEPRECATED); // Keep the original code after deprecation as the replacement is a trait // protected method.