X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=web%2Fcore%2Fmodules%2Ffilter%2Fsrc%2FEntity%2FFilterFormat.php;fp=web%2Fcore%2Fmodules%2Ffilter%2Fsrc%2FEntity%2FFilterFormat.php;h=c757512c770469db29f9de67db3db39014bc1a3f;hp=9dbaa62fd2c21d341fd3df433a039b65511d9ef2;hb=9917807b03b64faf00f6a1f29dcb6eafc454efa5;hpb=aea91e65e895364e460983b890e295aa5d5540a5 diff --git a/web/core/modules/filter/src/Entity/FilterFormat.php b/web/core/modules/filter/src/Entity/FilterFormat.php index 9dbaa62fd..c757512c7 100644 --- a/web/core/modules/filter/src/Entity/FilterFormat.php +++ b/web/core/modules/filter/src/Entity/FilterFormat.php @@ -269,7 +269,7 @@ class FilterFormat extends ConfigEntityBase implements FilterFormatInterface, En */ public function getHtmlRestrictions() { // Ignore filters that are disabled or don't have HTML restrictions. - $filters = array_filter($this->filters()->getAll(), function($filter) { + $filters = array_filter($this->filters()->getAll(), function ($filter) { if (!$filter->status) { return FALSE; } @@ -286,7 +286,7 @@ class FilterFormat extends ConfigEntityBase implements FilterFormatInterface, En // From the set of remaining filters (they were filtered by array_filter() // above), collect the list of tags and attributes that are allowed by all // filters, i.e. the intersection of all allowed tags and attributes. - $restrictions = array_reduce($filters, function($restrictions, $filter) { + $restrictions = array_reduce($filters, function ($restrictions, $filter) { $new_restrictions = $filter->getHTMLRestrictions(); // The first filter with HTML restrictions provides the initial set.