1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-20 10:11:29 +00:00
Files
tt-rss/lib/htmlpurifier/library/HTMLPurifier/URIScheme/https.php
2012-04-28 14:37:51 +02: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