https.php 206 B

123456789101112
  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. }
  8. // vim: et sw=4 sts=4