Searched refs:strip_htmltags (Results 1 – 3 of 3) sorted by relevance
| /dokuwiki/vendor/simplepie/simplepie/src/ |
| H A D | Sanitize.php | 46 …public $strip_htmltags = ['base', 'blink', 'body', 'doctype', 'embed', 'font', 'form', 'frame', 'f… variable in SimplePie\\Sanitize 226 …public function strip_htmltags($tags = ['base', 'blink', 'body', 'doctype', 'embed', 'font', 'form… function in SimplePie\\Sanitize 230 $this->strip_htmltags = $tags; 232 $this->strip_htmltags = explode(',', $tags); 235 $this->strip_htmltags = []; 466 if ($this->strip_htmltags) { 467 foreach ($this->strip_htmltags as $tag) { 605 if (!is_array($this->strip_htmltags) || !in_array($tag, $this->strip_htmltags)) {
|
| H A D | SimplePie.php | 634 …public $strip_htmltags = ['base', 'blink', 'body', 'doctype', 'embed', 'font', 'form', 'frame', 'f… variable in SimplePie\\SimplePie 1448 $this->strip_htmltags([]); 1479 public function strip_htmltags($tags = '', ?bool $encode = null) function in SimplePie\\SimplePie 1482 $tags = $this->strip_htmltags; 1484 $this->sanitize->strip_htmltags($tags);
|
| /dokuwiki/vendor/simplepie/simplepie/ |
| H A D | CHANGELOG.md | 33 - `SimplePie\SimplePie::strip_htmltags()` correctly propagates `$encode` argument to `Sanitize` (by… 74 - Fix `encode` argument of `SimplePie::strip_htmltags()` @jtojnar in [#894](https://github.com/simp…
|