2006-08-12 01:12:35 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
class HTMLPurifier_URIScheme
|
|
|
|
{
|
|
|
|
|
2006-08-12 03:56:27 +00:00
|
|
|
function validateComponents($authority, $path, $query, $fragment) {
|
2006-08-12 17:12:27 +00:00
|
|
|
return array($authority, $path, $query, $fragment);
|
2006-08-12 01:12:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|