File indexing completed on 2024-05-12 06:02:06

0001 <?php
0002 
0003 /**
0004  * Validates https (Secure HTTP) according to http scheme.
0005  */
0006 class HTMLPurifier_URIScheme_https extends HTMLPurifier_URIScheme_http
0007 {
0008     /**
0009      * @type int
0010      */
0011     public $default_port = 443;
0012     /**
0013      * @type bool
0014      */
0015     public $secure = true;
0016 }
0017 
0018 // vim: et sw=4 sts=4