This repository has been archived on 2024-08-19. You can view files and clone it, but cannot push or open issues or pull requests.
Files
core/lib/htmlpurifier/library/HTMLPurifier/URIScheme/https.php
2012-07-18 20:40:31 +10:00

14 lines
233 B
PHP

<?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