您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

19 行
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