mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-08 23:08:42 +00:00
69996acc9e
- Factored out large portion of ValidateAttributes to AttrValidator - Implemented ValidateAttributes armor - Fix clear cache bug - Implement armoring for ValidateAttributes git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@1174 48356398-32a2-884e-a903-53898d9a118a
24 lines
456 B
PHP
24 lines
456 B
PHP
#!/usr/bin/php
|
|
<?php
|
|
|
|
/**
|
|
* Flushes the default HTMLDefinition serial cache
|
|
*/
|
|
|
|
if (php_sapi_name() != 'cli') {
|
|
echo 'Script cannot be called from web-browser.';
|
|
exit;
|
|
}
|
|
|
|
echo 'Flushing cache... ';
|
|
|
|
require_once(dirname(__FILE__) . '/../library/HTMLPurifier.auto.php');
|
|
|
|
$config = HTMLPurifier_Config::createDefault();
|
|
|
|
$cache = new HTMLPurifier_DefinitionCache_Serializer('HTML');
|
|
$cache->flush($config);
|
|
|
|
echo 'Cache flushed successfully.';
|
|
|
|
?>
|