Automatic installer.php lang files by installer_builder (20070726)
[moodle-linuxchix.git] / lib / htmlpurifier / HTMLPurifier / URIScheme / news.php
blobc9d1c2b0c7ac7d08e7760465afc81e8c290c81c5
1 <?php
3 require_once 'HTMLPurifier/URIScheme.php';
5 /**
6 * Validates news (Usenet) as defined by generic RFC 1738
7 */
8 class HTMLPurifier_URIScheme_news extends HTMLPurifier_URIScheme {
10 var $browsable = false;
12 function validateComponents(
13 $userinfo, $host, $port, $path, $query, $config, &$context
14 ) {
15 list($userinfo, $host, $port, $path, $query) =
16 parent::validateComponents(
17 $userinfo, $host, $port, $path, $query, $config, $context );
18 // typecode check needed on path
19 return array(null, null, null, $path, null);