You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
298B

  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