https.php 233 B

12345678910111213
  1. <?php
  2. /**
  3. * Validates https (Secure HTTP) according to http scheme.
  4. */
  5. class HTMLPurifier_URIScheme_https extends HTMLPurifier_URIScheme_http {
  6. public $default_port = 443;
  7. public $secure = true;
  8. }
  9. // vim: et sw=4 sts=4