]> git.immae.eu Git - github/wallabag/wallabag.git/blame - inc/3rdparty/htmlpurifier/HTMLPurifier/Token/Empty.php
[RSS] introducing query param 'limit' to restrict the number of items to display...
[github/wallabag/wallabag.git] / inc / 3rdparty / htmlpurifier / HTMLPurifier / Token / Empty.php
CommitLineData
d4949327
NL
1<?php\r
2\r
3/**\r
4 * Concrete empty token class.\r
5 */\r
6class HTMLPurifier_Token_Empty extends HTMLPurifier_Token_Tag\r
7{\r
8 public function toNode() {\r
9 $n = parent::toNode();\r
10 $n->empty = true;\r
11 return $n;\r
12 }\r
13}\r
14\r
15// vim: et sw=4 sts=4\r