1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-21 05:31:52 +00:00

remove htmlpurifier

This commit is contained in:
Andrew Dolgov
2012-06-01 00:07:59 +04:00
parent 65dd90f2ba
commit c21a462d52
356 changed files with 4 additions and 26185 deletions

View File

@@ -1,18 +0,0 @@
<?php
/**
* Core strategy composed of the big four strategies.
*/
class HTMLPurifier_Strategy_Core extends HTMLPurifier_Strategy_Composite
{
public function __construct() {
$this->strategies[] = new HTMLPurifier_Strategy_RemoveForeignElements();
$this->strategies[] = new HTMLPurifier_Strategy_MakeWellFormed();
$this->strategies[] = new HTMLPurifier_Strategy_FixNesting();
$this->strategies[] = new HTMLPurifier_Strategy_ValidateAttributes();
}
}
// vim: et sw=4 sts=4