mirror of
https://github.com/moodle/moodle.git
synced 2025-07-19 05:11:33 +02:00
24 lines
524 B
PHP
24 lines
524 B
PHP
<?php
|
|
|
|
require_once 'HTMLPurifier/URIScheme.php';
|
|
|
|
/**
|
|
* Validates news (Usenet) as defined by generic RFC 1738
|
|
*/
|
|
class HTMLPurifier_URIScheme_news extends HTMLPurifier_URIScheme {
|
|
|
|
var $browsable = false;
|
|
|
|
function validate(&$uri, $config, &$context) {
|
|
parent::validate($uri, $config, $context);
|
|
$uri->userinfo = null;
|
|
$uri->host = null;
|
|
$uri->port = null;
|
|
$uri->query = null;
|
|
// typecode check needed on path
|
|
return true;
|
|
}
|
|
|
|
}
|
|
|