MDL-44516 import htmlpurifier 4.6.0

This commit is contained in:
Petr Škoda
2014-03-14 12:11:49 +08:00
parent c0e88129d1
commit 6becafba0e
357 changed files with 31103 additions and 25445 deletions
@@ -1,13 +1,18 @@
<?php
/**
* Validates https (Secure HTTP) according to http scheme.
*/
class HTMLPurifier_URIScheme_https extends HTMLPurifier_URIScheme_http {
public $default_port = 443;
public $secure = true;
}
// vim: et sw=4 sts=4
<?php
/**
* Validates https (Secure HTTP) according to http scheme.
*/
class HTMLPurifier_URIScheme_https extends HTMLPurifier_URIScheme_http
{
/**
* @type int
*/
public $default_port = 443;
/**
* @type bool
*/
public $secure = true;
}
// vim: et sw=4 sts=4