By ParisLiakos on
Change record status:
Published (View all published change records)
Project:
Introduced in branch:
8.x
Issue links:
Description:
Drupal 7
$safe = filter_xss($string);
$safe = filter_xss_admin($string);
Drupal 8
use Drupal\Component\Utility\Xss;
$safe = Xss::filter($string);
$safe = Xss::filterAdmin($string);
Impacts:
Module developers