mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 16:59:55 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@10579 201d5d3c-b55e-5fd7-737f-ddc643e51545
19 lines
392 B
PHP
19 lines
392 B
PHP
<?php
|
|
|
|
/**
|
|
* Validates http (HyperText Transfer Protocol) as defined by RFC 2616
|
|
*/
|
|
class HTMLPurifier_URIScheme_http extends HTMLPurifier_URIScheme {
|
|
|
|
public $default_port = 80;
|
|
public $browsable = true;
|
|
public $hierarchical = true;
|
|
|
|
public function doValidate(&$uri, $config, $context) {
|
|
$uri->userinfo = null;
|
|
return true;
|
|
}
|
|
|
|
}
|
|
|
|
// vim: et sw=4 sts=4
|