diff options
Diffstat (limited to 'library/HTMLPurifier/URIScheme/https.php')
-rw-r--r-- | library/HTMLPurifier/URIScheme/https.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/library/HTMLPurifier/URIScheme/https.php b/library/HTMLPurifier/URIScheme/https.php new file mode 100644 index 000000000..29e380919 --- /dev/null +++ b/library/HTMLPurifier/URIScheme/https.php @@ -0,0 +1,12 @@ +<?php + +/** + * Validates https (Secure HTTP) according to http scheme. + */ +class HTMLPurifier_URIScheme_https extends HTMLPurifier_URIScheme_http { + + public $default_port = 443; + +} + +// vim: et sw=4 sts=4 |