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