0
0
mirror of https://github.com/ezyang/htmlpurifier.git synced 2025-03-24 06:47:02 +00:00

13 lines
220 B
PHP
Raw Normal View History

<?php
require_once 'HTMLPurifier/URIScheme.php';
class HTMLPurifier_URIScheme_http extends HTMLPurifier_URIScheme {
function validateComponents($authority, $path, $query, $fragment) {
}
}
?>