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
No related merge requests found
......@@ -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