Searched refs:strip_htmltags (Results 1 – 3 of 3) sorted by relevance
| /dokuwiki/vendor/simplepie/simplepie/src/ |
| H A D | Sanitize.php | 71 …public $strip_htmltags = ['base', 'blink', 'body', 'doctype', 'embed', 'font', 'form', 'frame', 'f… variable in SimplePie\\Sanitize 183 …public function strip_htmltags($tags = ['base', 'blink', 'body', 'doctype', 'embed', 'font', 'form… function in SimplePie\\Sanitize 187 $this->strip_htmltags = $tags; 189 $this->strip_htmltags = explode(',', $tags); 192 $this->strip_htmltags = false; 385 if ($this->strip_htmltags) { 386 foreach ($this->strip_htmltags as $tag) { 502 if (!is_array($this->strip_htmltags) || !in_array($tag, $this->strip_htmltags)) {
|
| H A D | SimplePie.php | 1346 $this->strip_htmltags(false); 1369 public function strip_htmltags($tags = '', $encode = null) function in SimplePie\\SimplePie 1372 $tags = $this->strip_htmltags; 1374 $this->sanitize->strip_htmltags($tags);
|
| /dokuwiki/vendor/simplepie/simplepie/ |
| H A D | CHANGELOG.md | 22 - Fix `encode` argument of `SimplePie::strip_htmltags()` @jtojnar in [#894](https://github.com/simp…
|