mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-10 07:38:41 +00:00
21 lines
532 B
PHP
21 lines
532 B
PHP
|
<?php
|
||
|
|
||
|
require_once 'HTMLPurifier/URIScheme.php';
|
||
|
|
||
|
class HTMLPurifier_URIScheme_ftp extends HTMLPurifier_URIScheme {
|
||
|
|
||
|
var $default_port = 21;
|
||
|
|
||
|
function validateComponents(
|
||
|
$userinfo, $host, $port, $path, $query, $config
|
||
|
) {
|
||
|
list($userinfo, $host, $port, $path, $query) =
|
||
|
parent::validateComponents(
|
||
|
$userinfo, $host, $port, $path, $query, $config );
|
||
|
// typecode check needed on path
|
||
|
return array($userinfo, $host, $port, $path, null);
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
?>
|