<?php/** * Validates http (HyperText Transfer Protocol) as defined by RFC 2616 */classHTMLPurifier_URIScheme_httpextendsHTMLPurifier_URIScheme{public$default_port=80;public$browsable=true;public$hierarchical=true;publicfunctiondoValidate(&$uri,$config,$context){$uri->userinfo=null;returntrue;}}// vim: et sw=4 sts=4