/** Sanitizes invalid value for PHP_AUTH_USER and PHP_AUTH_PW * must call ::logValidationWarning if replacing some character(s) that raise security suspicion * default implementation is no sanitization. * May be overridden on HttpValidator to do actual sanitization. * @return string sanitized and validated value or null * @param string value to sanitize * */ function sanitizePhpAuth($name, $value) { return $value; } |