mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-10 15:48:42 +00:00
11 lines
276 B
PHP
11 lines
276 B
PHP
|
<?php
|
||
|
|
||
|
class HTMLPurifier_Strategy_MakeWellFormed_SkipInjector extends HTMLPurifier_Injector
|
||
|
{
|
||
|
public $name = 'EndRewindInjector';
|
||
|
public $needed = array('span');
|
||
|
public function handleElement(&$token) {
|
||
|
$token = array(clone $token, clone $token);
|
||
|
}
|
||
|
}
|