diff --git a/core/modules/action/action.views_execution.inc b/core/modules/action/action.views_execution.inc index 859cffdca47dabb5db344ffc4d159ec27669c1a5..32bc883fbd0292623e9f079de6b5ca7017c3edc9 100644 --- a/core/modules/action/action.views_execution.inc +++ b/core/modules/action/action.views_execution.inc @@ -5,12 +5,14 @@ * Provides views runtime hooks for action.module. */ +use Drupal\Component\Utility\String; + /** * Implements hook_views_form_substitutions(). */ function action_views_form_substitutions() { - // Views check_plain()s the column label, so we need to match that. - $select_all_placeholder = check_plain(''); + // Views String::checkPlain()s the column label, so we need to match that. + $select_all_placeholder = String::checkPlain(''); $select_all = array( '#type' => 'checkbox', '#default_value' => FALSE,