<?php/** * Validates nntp (Network News Transfer Protocol) as defined by generic RFC 1738 */classHTMLPurifier_URIScheme_nntpextendsHTMLPurifier_URIScheme{public$default_port=119;public$browsable=false;publicfunctiondoValidate(&$uri,$config,$context){$uri->userinfo=null;$uri->query=null;returntrue;}}// vim: et sw=4 sts=4