Automatic installer.php lang files by installer_builder (20070726)
[moodle-linuxchix.git] / lib / htmlpurifier / HTMLPurifier / URIScheme / nntp.php
blob49fca4c3bb1f66fcb8ede56e25f81ee21753de4a
1 <?php
3 require_once 'HTMLPurifier/URIScheme.php';
5 /**
6 * Validates nntp (Network News Transfer Protocol) as defined by generic RFC 1738
7 */
8 class HTMLPurifier_URIScheme_nntp extends HTMLPurifier_URIScheme {
10 var $default_port = 119;
11 var $browsable = false;
13 function validateComponents(
14 $userinfo, $host, $port, $path, $query, $config, &$context
15 ) {
16 list($userinfo, $host, $port, $path, $query) =
17 parent::validateComponents(
18 $userinfo, $host, $port, $path, $query, $config, $context );
19 return array(null, $host, $port, $path, null);