https.php 298 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * Validates https (Secure HTTP) according to http scheme.
  4. */
  5. class HTMLPurifier_URIScheme_https extends HTMLPurifier_URIScheme_http
  6. {
  7. /**
  8. * @type int
  9. */
  10. public $default_port = 443;
  11. /**
  12. * @type bool
  13. */
  14. public $secure = true;
  15. }
  16. // vim: et sw=4 sts=4