Skip to content
Snippets Groups Projects
Commit daa2c02e authored by Alex Pott's avatar Alex Pott
Browse files

Issue #2407975 by neclimdul: Fatal error in Drupal\views\Plugin\views\argument\FieldList

parent ed1c7bab
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -7,7 +7,7 @@
namespace Drupal\views\Plugin\views\argument;
use Drupal\Component\Utility\String;
use Drupal\Component\Utility\String as UtilityString;
use Drupal\Core\Field\AllowedTagsXssTrait;
use Drupal\Core\Form\FormStateInterface;
use Drupal\views\ViewExecutable;
......@@ -74,7 +74,7 @@ public function summaryName($data) {
}
// else fallback to the key.
else {
return String::checkPlain($value);
return UtilityString::checkPlain($value);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment