You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ChildDefHarness.php 321B

1234567891011121314151617
  1. <?php
  2. class HTMLPurifier_ChildDefHarness extends HTMLPurifier_ComplexHarness
  3. {
  4. public function setUp()
  5. {
  6. parent::setUp();
  7. $this->obj = null;
  8. $this->func = 'validateChildren';
  9. $this->to_html = true;
  10. $this->to_node_list = true;
  11. }
  12. }
  13. // vim: et sw=4 sts=4