mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-12-12 15:51:17 +01:00
14 lines
240 B
PHP
14 lines
240 B
PHP
<?php
|
|
|
|
class HTMLPurifier_InjectorHarness extends HTMLPurifier_StrategyHarness
|
|
{
|
|
|
|
function setUp() {
|
|
parent::setUp();
|
|
$this->obj = new HTMLPurifier_Strategy_MakeWellFormed();
|
|
}
|
|
|
|
}
|
|
|
|
// vim: et sw=4 sts=4
|