2006-08-12 03:56:27 +00:00
|
|
|
<?php
|
|
|
|
|
2006-08-20 22:06:11 +00:00
|
|
|
/**
|
|
|
|
* Validates http (HyperText Transfer Protocol) as defined by RFC 2616
|
|
|
|
*/
|
2006-08-12 03:56:27 +00:00
|
|
|
class HTMLPurifier_URIScheme_http extends HTMLPurifier_URIScheme {
|
|
|
|
|
2007-11-25 02:24:39 +00:00
|
|
|
public $default_port = 80;
|
|
|
|
public $browsable = true;
|
|
|
|
public $hierarchical = true;
|
2006-08-12 18:58:54 +00:00
|
|
|
|
2008-01-05 00:10:43 +00:00
|
|
|
public function validate(&$uri, $config, $context) {
|
2007-08-01 18:34:46 +00:00
|
|
|
parent::validate($uri, $config, $context);
|
|
|
|
$uri->userinfo = null;
|
|
|
|
return true;
|
2006-08-12 03:56:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|