friendica/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIScheme/https.php

19 lines
298 B
PHP
Raw Normal View History

2010-09-09 03:14:17 +00:00
<?php
/**
* Validates https (Secure HTTP) according to http scheme.
*/
2016-02-09 10:06:17 +00:00
class HTMLPurifier_URIScheme_https extends HTMLPurifier_URIScheme_http
{
/**
* @type int
*/
2010-09-09 03:14:17 +00:00
public $default_port = 443;
2016-02-09 10:06:17 +00:00
/**
* @type bool
*/
public $secure = true;
2010-09-09 03:14:17 +00:00
}
// vim: et sw=4 sts=4