(block ->
)
- XSS-attempt detection--certain errors are flagged XSS-like
- Append something to duplicate IDs so they're still usable (impl. note: the
dupe detector would also need to detect the suffix as well)
6.0 release [Beyond HTML]
# Legit token based CSS parsing (will require revamping almost every
AttrDef class). Probably will use CSSTidy
# More control over allowed CSS properties using a modularization
# IRI support (this includes IDN)
- Standardize token armor for all areas of processing
7.0 release [To XML and Beyond]
- Extended HTML capabilities based on namespacing and tag transforms (COMPLEX)
- Hooks for adding custom processors to custom namespaced tags and
attributes, offer default implementation
- Lots of documentation and samples
Ongoing
- More refactoring to take advantage of PHP5's facilities
- Refactor unit tests into lots of test methods
- Plugins for major CMSes (COMPLEX)
- phpBB
- Also, a FAQ for extension writers with HTML Purifier
AutoFormat
- Smileys
- Syntax highlighting (with GeSHi) with and possibly tags; may be troublesome
because regular CSS has no way of uniquely identifying nodes, so we'd
have to generate IDs
- Explain how to use HTML Purifier in non-PHP languages / create
a simple command line stub (or complicated?)
- Fixes for Firefox's inability to handle COL alignment props (Bug 915)
- Automatically add non-breaking spaces to empty table cells when
empty-cells:show is applied to have compatibility with Internet Explorer
- Table of Contents generation (XHTML Compiler might be reusable). May also
be out-of-band information.
- Full set of color keywords. Also, a way to add onto them without
finalizing the configuration object.
- Write a var_export and memcached DefinitionCache - Denis
- Built-in support for target="_blank" on all external links
- Convert RTL/LTR override characters to tags, or vice versa on demand.
Also, enable disabling of directionality
? Externalize inline CSS to promote clean HTML, proposed by Sander Tekelenburg
? Remove redundant tags, ex. Underlined. Implementation notes:
1. Analyzing which tags to remove duplicants
2. Ensure attributes are merged into the parent tag
3. Extend the tag exclusion system to specify whether or not the
contents should be dropped or not (currently, there's code that could do
something like this if it didn't drop the inner text too.)
? Make AutoParagraph also support paragraph-izing double
tags, and not
just double newlines. This is kind of tough to do in the current framework,
though, and might be reasonably approximated by search replacing double
s
with newlines before running it through HTML Purifier.
Maintenance related (slightly boring)
# CHMOD install script for PEAR installs
! Factor out command line parser into its own class, and unit test it
- Reduce size of internal data-structures (esp. HTMLDefinition)
- Allow merging configurations. Thus,
a -> b -> default
c -> d -> default
becomes
a -> b -> c -> d -> default
Maybe allow more fine-grained tuning of this behavior. Alternatively,
encourage people to use short plist depths before building them up.
- Time PHPT tests
ChildDef related (very boring)
- Abstract ChildDef_BlockQuote to work with all elements that only
allow blocks in them, required or optional
- Implement lenient child validation
Wontfix
- Non-lossy smart alternate character encoding transformations (unless
patch provided)
- Pretty-printing HTML: users can use Tidy on the output on entire page
- Native content compression, whitespace stripping: use gzip if this is
really important
vim: et sw=4 sts=4
htmlpurifier/package.php 0000644 00000003342 14716425661 0011400 0 ustar 00 setOptions(
array(
'baseinstalldir' => '/',
'packagefile' => 'package.xml',
'packagedirectory' => realpath(dirname(__FILE__) . '/library'),
'filelistgenerator' => 'file',
'include' => array('*'),
'dir_roles' => array('/' => 'php'), // hack to put *.ser files in the right place
'ignore' => array(
'HTMLPurifier.standalone.php',
'HTMLPurifier.path.php',
'*.tar.gz',
'*.tgz',
'standalone/'
),
)
);
$pkg->setPackage('HTMLPurifier');
$pkg->setLicense('LGPL', 'http://www.gnu.org/licenses/lgpl.html');
$pkg->setSummary('Standards-compliant HTML filter');
$pkg->setDescription(
'HTML Purifier is an HTML filter that will remove all malicious code
(better known as XSS) with a thoroughly audited, secure yet permissive
whitelist and will also make sure your documents are standards
compliant.'
);
$pkg->addMaintainer('lead', 'ezyang', 'Edward Z. Yang', 'admin@htmlpurifier.org', 'yes');
$version = trim(file_get_contents('VERSION'));
$api_version = substr($version, 0, strrpos($version, '.'));
$pkg->setChannel('htmlpurifier.org');
$pkg->setAPIVersion($api_version);
$pkg->setAPIStability('stable');
$pkg->setReleaseVersion($version);
$pkg->setReleaseStability('stable');
$pkg->addRelease();
$pkg->setNotes(file_get_contents('WHATSNEW'));
$pkg->setPackageType('php');
$pkg->setPhpDep('5.0.0');
$pkg->setPearinstallerDep('1.4.3');
$pkg->generateContents();
$pkg->writePackageFile();
// vim: et sw=4 sts=4
htmlpurifier/test-settings.travis.php 0000644 00000005041 14716425661 0014127 0 ustar 00 =5.2"
},
"require-dev": {
"simpletest/simpletest": "^1.1"
},
"autoload": {
"psr-0": { "HTMLPurifier": "library/" },
"files": ["library/HTMLPurifier.composer.php"]
}
}
htmlpurifier/test-settings.sample.php 0000644 00000005222 14716425661 0014101 0 ustar 00 scheme = is_null($scheme) || ctype_lower($scheme) ? $scheme : strtolower($scheme);
$this->userinfo = $userinfo;
$this->host = $host;
$this->port = is_null($port) ? $port : (int)$port;
$this->path = $path;
$this->query = $query;
$this->fragment = $fragment;
}
/**
* Retrieves a scheme object corresponding to the URI's scheme/default
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return HTMLPurifier_URIScheme Scheme object appropriate for validating this URI
*/
public function getSchemeObj($config, $context)
{
$registry = HTMLPurifier_URISchemeRegistry::instance();
if ($this->scheme !== null) {
$scheme_obj = $registry->getScheme($this->scheme, $config, $context);
if (!$scheme_obj) {
return false;
} // invalid scheme, clean it out
} else {
// no scheme: retrieve the default one
$def = $config->getDefinition('URI');
$scheme_obj = $def->getDefaultScheme($config, $context);
if (!$scheme_obj) {
if ($def->defaultScheme !== null) {
// something funky happened to the default scheme object
trigger_error(
'Default scheme object "' . $def->defaultScheme . '" was not readable',
E_USER_WARNING
);
} // suppress error if it's null
return false;
}
}
return $scheme_obj;
}
/**
* Generic validation method applicable for all schemes. May modify
* this URI in order to get it into a compliant form.
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return bool True if validation/filtering succeeds, false if failure
*/
public function validate($config, $context)
{
// ABNF definitions from RFC 3986
$chars_sub_delims = '!$&\'()*+,;=';
$chars_gen_delims = ':/?#[]@';
$chars_pchar = $chars_sub_delims . ':@';
// validate host
if (!is_null($this->host)) {
$host_def = new HTMLPurifier_AttrDef_URI_Host();
$this->host = $host_def->validate($this->host, $config, $context);
if ($this->host === false) {
$this->host = null;
}
}
// validate scheme
// NOTE: It's not appropriate to check whether or not this
// scheme is in our registry, since a URIFilter may convert a
// URI that we don't allow into one we do. So instead, we just
// check if the scheme can be dropped because there is no host
// and it is our default scheme.
if (!is_null($this->scheme) && is_null($this->host) || $this->host === '') {
// support for relative paths is pretty abysmal when the
// scheme is present, so axe it when possible
$def = $config->getDefinition('URI');
if ($def->defaultScheme === $this->scheme) {
$this->scheme = null;
}
}
// validate username
if (!is_null($this->userinfo)) {
$encoder = new HTMLPurifier_PercentEncoder($chars_sub_delims . ':');
$this->userinfo = $encoder->encode($this->userinfo);
}
// validate port
if (!is_null($this->port)) {
if ($this->port < 1 || $this->port > 65535) {
$this->port = null;
}
}
// validate path
$segments_encoder = new HTMLPurifier_PercentEncoder($chars_pchar . '/');
if (!is_null($this->host)) { // this catches $this->host === ''
// path-abempty (hier and relative)
// http://www.example.com/my/path
// //www.example.com/my/path (looks odd, but works, and
// recognized by most browsers)
// (this set is valid or invalid on a scheme by scheme
// basis, so we'll deal with it later)
// file:///my/path
// ///my/path
$this->path = $segments_encoder->encode($this->path);
} elseif ($this->path !== '') {
if ($this->path[0] === '/') {
// path-absolute (hier and relative)
// http:/my/path
// /my/path
if (strlen($this->path) >= 2 && $this->path[1] === '/') {
// This could happen if both the host gets stripped
// out
// http://my/path
// //my/path
$this->path = '';
} else {
$this->path = $segments_encoder->encode($this->path);
}
} elseif (!is_null($this->scheme)) {
// path-rootless (hier)
// http:my/path
// Short circuit evaluation means we don't need to check nz
$this->path = $segments_encoder->encode($this->path);
} else {
// path-noscheme (relative)
// my/path
// (once again, not checking nz)
$segment_nc_encoder = new HTMLPurifier_PercentEncoder($chars_sub_delims . '@');
$c = strpos($this->path, '/');
if ($c !== false) {
$this->path =
$segment_nc_encoder->encode(substr($this->path, 0, $c)) .
$segments_encoder->encode(substr($this->path, $c));
} else {
$this->path = $segment_nc_encoder->encode($this->path);
}
}
} else {
// path-empty (hier and relative)
$this->path = ''; // just to be safe
}
// qf = query and fragment
$qf_encoder = new HTMLPurifier_PercentEncoder($chars_pchar . '/?');
if (!is_null($this->query)) {
$this->query = $qf_encoder->encode($this->query);
}
if (!is_null($this->fragment)) {
$this->fragment = $qf_encoder->encode($this->fragment);
}
return true;
}
/**
* Convert URI back to string
* @return string URI appropriate for output
*/
public function toString()
{
// reconstruct authority
$authority = null;
// there is a rendering difference between a null authority
// (http:foo-bar) and an empty string authority
// (http:///foo-bar).
if (!is_null($this->host)) {
$authority = '';
if (!is_null($this->userinfo)) {
$authority .= $this->userinfo . '@';
}
$authority .= $this->host;
if (!is_null($this->port)) {
$authority .= ':' . $this->port;
}
}
// Reconstruct the result
// One might wonder about parsing quirks from browsers after
// this reconstruction. Unfortunately, parsing behavior depends
// on what *scheme* was employed (file:///foo is handled *very*
// differently than http:///foo), so unfortunately we have to
// defer to the schemes to do the right thing.
$result = '';
if (!is_null($this->scheme)) {
$result .= $this->scheme . ':';
}
if (!is_null($authority)) {
$result .= '//' . $authority;
}
$result .= $this->path;
if (!is_null($this->query)) {
$result .= '?' . $this->query;
}
if (!is_null($this->fragment)) {
$result .= '#' . $this->fragment;
}
return $result;
}
/**
* Returns true if this URL might be considered a 'local' URL given
* the current context. This is true when the host is null, or
* when it matches the host supplied to the configuration.
*
* Note that this does not do any scheme checking, so it is mostly
* only appropriate for metadata that doesn't care about protocol
* security. isBenign is probably what you actually want.
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return bool
*/
public function isLocal($config, $context)
{
if ($this->host === null) {
return true;
}
$uri_def = $config->getDefinition('URI');
if ($uri_def->host === $this->host) {
return true;
}
return false;
}
/**
* Returns true if this URL should be considered a 'benign' URL,
* that is:
*
* - It is a local URL (isLocal), and
* - It has a equal or better level of security
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return bool
*/
public function isBenign($config, $context)
{
if (!$this->isLocal($config, $context)) {
return false;
}
$scheme_obj = $this->getSchemeObj($config, $context);
if (!$scheme_obj) {
return false;
} // conservative approach
$current_scheme_obj = $config->getDefinition('URI')->getDefaultScheme($config, $context);
if ($current_scheme_obj->secure) {
if (!$scheme_obj->secure) {
return false;
}
}
return true;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/URIScheme/nntp.php 0000644 00000001164 14716425661 0016466 0 ustar 00 userinfo = null;
$uri->query = null;
return true;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/URIScheme/http.php 0000644 00000001217 14716425661 0016465 0 ustar 00 userinfo = null;
return true;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/URIScheme/file.php 0000644 00000002374 14716425661 0016432 0 ustar 00 userinfo = null;
// file:// makes no provisions for accessing the resource
$uri->port = null;
// While it seems to work on Firefox, the querystring has
// no possible effect and is thus stripped.
$uri->query = null;
return true;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/URIScheme/https.php 0000644 00000000452 14716425661 0016650 0 ustar 00 userinfo = null;
$uri->host = null;
$uri->port = null;
$uri->query = null;
// typecode check needed on path
return true;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/URIScheme/data.php 0000644 00000010416 14716425661 0016420 0 ustar 00 true,
'image/gif' => true,
'image/png' => true,
);
// this is actually irrelevant since we only write out the path
// component
/**
* @type bool
*/
public $may_omit_host = true;
/**
* @param HTMLPurifier_URI $uri
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return bool
*/
public function doValidate(&$uri, $config, $context)
{
$result = explode(',', $uri->path, 2);
$is_base64 = false;
$charset = null;
$content_type = null;
if (count($result) == 2) {
list($metadata, $data) = $result;
// do some legwork on the metadata
$metas = explode(';', $metadata);
while (!empty($metas)) {
$cur = array_shift($metas);
if ($cur == 'base64') {
$is_base64 = true;
break;
}
if (substr($cur, 0, 8) == 'charset=') {
// doesn't match if there are arbitrary spaces, but
// whatever dude
if ($charset !== null) {
continue;
} // garbage
$charset = substr($cur, 8); // not used
} else {
if ($content_type !== null) {
continue;
} // garbage
$content_type = $cur;
}
}
} else {
$data = $result[0];
}
if ($content_type !== null && empty($this->allowed_types[$content_type])) {
return false;
}
if ($charset !== null) {
// error; we don't allow plaintext stuff
$charset = null;
}
$data = rawurldecode($data);
if ($is_base64) {
$raw_data = base64_decode($data);
} else {
$raw_data = $data;
}
if ( strlen($raw_data) < 12 ) {
// error; exif_imagetype throws exception with small files,
// and this likely indicates a corrupt URI/failed parse anyway
return false;
}
// XXX probably want to refactor this into a general mechanism
// for filtering arbitrary content types
if (function_exists('sys_get_temp_dir')) {
$file = tempnam(sys_get_temp_dir(), "");
} else {
$file = tempnam("/tmp", "");
}
file_put_contents($file, $raw_data);
if (function_exists('exif_imagetype')) {
$image_code = exif_imagetype($file);
unlink($file);
} elseif (function_exists('getimagesize')) {
set_error_handler(array($this, 'muteErrorHandler'));
$info = getimagesize($file);
restore_error_handler();
unlink($file);
if ($info == false) {
return false;
}
$image_code = $info[2];
} else {
trigger_error("could not find exif_imagetype or getimagesize functions", E_USER_ERROR);
}
$real_content_type = image_type_to_mime_type($image_code);
if ($real_content_type != $content_type) {
// we're nice guys; if the content type is something else we
// support, change it over
if (empty($this->allowed_types[$real_content_type])) {
return false;
}
$content_type = $real_content_type;
}
// ok, it's kosher, rewrite what we need
$uri->userinfo = null;
$uri->host = null;
$uri->port = null;
$uri->fragment = null;
$uri->query = null;
$uri->path = "$content_type;base64," . base64_encode($raw_data);
return true;
}
/**
* @param int $errno
* @param string $errstr
*/
public function muteErrorHandler($errno, $errstr)
{
}
}
htmlpurifier/library/HTMLPurifier/URIScheme/tel.php 0000644 00000002230 14716425661 0016266 0 ustar 00 userinfo = null;
$uri->host = null;
$uri->port = null;
// Delete all non-numeric characters, non-x characters
// from phone number, EXCEPT for a leading plus sign.
$uri->path = preg_replace('/(?!^\+)[^\dx]/', '',
// Normalize e(x)tension to lower-case
str_replace('X', 'x', $uri->path));
return true;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/URIScheme/ftp.php 0000644 00000003156 14716425661 0016303 0 ustar 00 query = null;
// typecode check
$semicolon_pos = strrpos($uri->path, ';'); // reverse
if ($semicolon_pos !== false) {
$type = substr($uri->path, $semicolon_pos + 1); // no semicolon
$uri->path = substr($uri->path, 0, $semicolon_pos);
$type_ret = '';
if (strpos($type, '=') !== false) {
// figure out whether or not the declaration is correct
list($key, $typecode) = explode('=', $type, 2);
if ($key !== 'type') {
// invalid key, tack it back on encoded
$uri->path .= '%3B' . $type;
} elseif ($typecode === 'a' || $typecode === 'i' || $typecode === 'd') {
$type_ret = ";type=$typecode";
}
} else {
$uri->path .= '%3B' . $type;
}
$uri->path = str_replace(';', '%3B', $uri->path);
$uri->path .= $type_ret;
}
return true;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/URIScheme/mailto.php 0000644 00000001575 14716425661 0017002 0 ustar 00 userinfo = null;
$uri->host = null;
$uri->port = null;
// we need to validate path against RFC 2368's addr-spec
return true;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/AttrDef.php 0000644 00000012113 14716425661 0015250 0 ustar 00 by removing
* leading and trailing whitespace, ignoring line feeds, and replacing
* carriage returns and tabs with spaces. While most useful for HTML
* attributes specified as CDATA, it can also be applied to most CSS
* values.
*
* @note This method is not entirely standards compliant, as trim() removes
* more types of whitespace than specified in the spec. In practice,
* this is rarely a problem, as those extra characters usually have
* already been removed by HTMLPurifier_Encoder.
*
* @warning This processing is inconsistent with XML's whitespace handling
* as specified by section 3.3.3 and referenced XHTML 1.0 section
* 4.7. However, note that we are NOT necessarily
* parsing XML, thus, this behavior may still be correct. We
* assume that newlines have been normalized.
*/
public function parseCDATA($string)
{
$string = trim($string);
$string = str_replace(array("\n", "\t", "\r"), ' ', $string);
return $string;
}
/**
* Factory method for creating this class from a string.
* @param string $string String construction info
* @return HTMLPurifier_AttrDef Created AttrDef object corresponding to $string
*/
public function make($string)
{
// default implementation, return a flyweight of this object.
// If $string has an effect on the returned object (i.e. you
// need to overload this method), it is best
// to clone or instantiate new copies. (Instantiation is safer.)
return $this;
}
/**
* Removes spaces from rgb(0, 0, 0) so that shorthand CSS properties work
* properly. THIS IS A HACK!
* @param string $string a CSS colour definition
* @return string
*/
protected function mungeRgb($string)
{
$p = '\s*(\d+(\.\d+)?([%]?))\s*';
if (preg_match('/(rgba|hsla)\(/', $string)) {
return preg_replace('/(rgba|hsla)\('.$p.','.$p.','.$p.','.$p.'\)/', '\1(\2,\5,\8,\11)', $string);
}
return preg_replace('/(rgb|hsl)\('.$p.','.$p.','.$p.'\)/', '\1(\2,\5,\8)', $string);
}
/**
* Parses a possibly escaped CSS string and returns the "pure"
* version of it.
*/
protected function expandCSSEscape($string)
{
// flexibly parse it
$ret = '';
for ($i = 0, $c = strlen($string); $i < $c; $i++) {
if ($string[$i] === '\\') {
$i++;
if ($i >= $c) {
$ret .= '\\';
break;
}
if (ctype_xdigit($string[$i])) {
$code = $string[$i];
for ($a = 1, $i++; $i < $c && $a < 6; $i++, $a++) {
if (!ctype_xdigit($string[$i])) {
break;
}
$code .= $string[$i];
}
// We have to be extremely careful when adding
// new characters, to make sure we're not breaking
// the encoding.
$char = HTMLPurifier_Encoder::unichr(hexdec($code));
if (HTMLPurifier_Encoder::cleanUTF8($char) === '') {
continue;
}
$ret .= $char;
if ($i < $c && trim($string[$i]) !== '') {
$i--;
}
continue;
}
if ($string[$i] === "\n") {
continue;
}
}
$ret .= $string[$i];
}
return $ret;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/TokenFactory.php 0000644 00000006033 14716425661 0016333 0 ustar 00 p_start = new HTMLPurifier_Token_Start('', array());
$this->p_end = new HTMLPurifier_Token_End('');
$this->p_empty = new HTMLPurifier_Token_Empty('', array());
$this->p_text = new HTMLPurifier_Token_Text('');
$this->p_comment = new HTMLPurifier_Token_Comment('');
}
/**
* Creates a HTMLPurifier_Token_Start.
* @param string $name Tag name
* @param array $attr Associative array of attributes
* @return HTMLPurifier_Token_Start Generated HTMLPurifier_Token_Start
*/
public function createStart($name, $attr = array())
{
$p = clone $this->p_start;
$p->__construct($name, $attr);
return $p;
}
/**
* Creates a HTMLPurifier_Token_End.
* @param string $name Tag name
* @return HTMLPurifier_Token_End Generated HTMLPurifier_Token_End
*/
public function createEnd($name)
{
$p = clone $this->p_end;
$p->__construct($name);
return $p;
}
/**
* Creates a HTMLPurifier_Token_Empty.
* @param string $name Tag name
* @param array $attr Associative array of attributes
* @return HTMLPurifier_Token_Empty Generated HTMLPurifier_Token_Empty
*/
public function createEmpty($name, $attr = array())
{
$p = clone $this->p_empty;
$p->__construct($name, $attr);
return $p;
}
/**
* Creates a HTMLPurifier_Token_Text.
* @param string $data Data of text token
* @return HTMLPurifier_Token_Text Generated HTMLPurifier_Token_Text
*/
public function createText($data)
{
$p = clone $this->p_text;
$p->__construct($data);
return $p;
}
/**
* Creates a HTMLPurifier_Token_Comment.
* @param string $data Data of comment token
* @return HTMLPurifier_Token_Comment Generated HTMLPurifier_Token_Comment
*/
public function createComment($data)
{
$p = clone $this->p_comment;
$p->__construct($data);
return $p;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/EntityParser.php 0000644 00000023341 14716425661 0016355 0 ustar 00 _semiOptionalPrefixRegex = "/&()()()($semi_optional)/";
$this->_textEntitiesRegex =
'/&(?:'.
// hex
'[#]x([a-fA-F0-9]+);?|'.
// dec
'[#]0*(\d+);?|'.
// string (mandatory semicolon)
// NB: order matters: match semicolon preferentially
'([A-Za-z_:][A-Za-z0-9.\-_:]*);|'.
// string (optional semicolon)
"($semi_optional)".
')/';
$this->_attrEntitiesRegex =
'/&(?:'.
// hex
'[#]x([a-fA-F0-9]+);?|'.
// dec
'[#]0*(\d+);?|'.
// string (mandatory semicolon)
// NB: order matters: match semicolon preferentially
'([A-Za-z_:][A-Za-z0-9.\-_:]*);|'.
// string (optional semicolon)
// don't match if trailing is equals or alphanumeric (URL
// like)
"($semi_optional)(?![=;A-Za-z0-9])".
')/';
}
/**
* Substitute entities with the parsed equivalents. Use this on
* textual data in an HTML document (as opposed to attributes.)
*
* @param string $string String to have entities parsed.
* @return string Parsed string.
*/
public function substituteTextEntities($string)
{
return preg_replace_callback(
$this->_textEntitiesRegex,
array($this, 'entityCallback'),
$string
);
}
/**
* Substitute entities with the parsed equivalents. Use this on
* attribute contents in documents.
*
* @param string $string String to have entities parsed.
* @return string Parsed string.
*/
public function substituteAttrEntities($string)
{
return preg_replace_callback(
$this->_attrEntitiesRegex,
array($this, 'entityCallback'),
$string
);
}
/**
* Callback function for substituteNonSpecialEntities() that does the work.
*
* @param array $matches PCRE matches array, with 0 the entire match, and
* either index 1, 2 or 3 set with a hex value, dec value,
* or string (respectively).
* @return string Replacement string.
*/
protected function entityCallback($matches)
{
$entity = $matches[0];
$hex_part = @$matches[1];
$dec_part = @$matches[2];
$named_part = empty($matches[3]) ? @$matches[4] : $matches[3];
if ($hex_part !== NULL && $hex_part !== "") {
return HTMLPurifier_Encoder::unichr(hexdec($hex_part));
} elseif ($dec_part !== NULL && $dec_part !== "") {
return HTMLPurifier_Encoder::unichr((int) $dec_part);
} else {
if (!$this->_entity_lookup) {
$this->_entity_lookup = HTMLPurifier_EntityLookup::instance();
}
if (isset($this->_entity_lookup->table[$named_part])) {
return $this->_entity_lookup->table[$named_part];
} else {
// exact match didn't match anything, so test if
// any of the semicolon optional match the prefix.
// Test that this is an EXACT match is important to
// prevent infinite loop
if (!empty($matches[3])) {
return preg_replace_callback(
$this->_semiOptionalPrefixRegex,
array($this, 'entityCallback'),
$entity
);
}
return $entity;
}
}
}
// LEGACY CODE BELOW
/**
* Callback regex string for parsing entities.
* @type string
*/
protected $_substituteEntitiesRegex =
'/&(?:[#]x([a-fA-F0-9]+)|[#]0*(\d+)|([A-Za-z_:][A-Za-z0-9.\-_:]*));?/';
// 1. hex 2. dec 3. string (XML style)
/**
* Decimal to parsed string conversion table for special entities.
* @type array
*/
protected $_special_dec2str =
array(
34 => '"',
38 => '&',
39 => "'",
60 => '<',
62 => '>'
);
/**
* Stripped entity names to decimal conversion table for special entities.
* @type array
*/
protected $_special_ent2dec =
array(
'quot' => 34,
'amp' => 38,
'lt' => 60,
'gt' => 62
);
/**
* Substitutes non-special entities with their parsed equivalents. Since
* running this whenever you have parsed character is t3h 5uck, we run
* it before everything else.
*
* @param string $string String to have non-special entities parsed.
* @return string Parsed string.
*/
public function substituteNonSpecialEntities($string)
{
// it will try to detect missing semicolons, but don't rely on it
return preg_replace_callback(
$this->_substituteEntitiesRegex,
array($this, 'nonSpecialEntityCallback'),
$string
);
}
/**
* Callback function for substituteNonSpecialEntities() that does the work.
*
* @param array $matches PCRE matches array, with 0 the entire match, and
* either index 1, 2 or 3 set with a hex value, dec value,
* or string (respectively).
* @return string Replacement string.
*/
protected function nonSpecialEntityCallback($matches)
{
// replaces all but big five
$entity = $matches[0];
$is_num = (@$matches[0][1] === '#');
if ($is_num) {
$is_hex = (@$entity[2] === 'x');
$code = $is_hex ? hexdec($matches[1]) : (int) $matches[2];
// abort for special characters
if (isset($this->_special_dec2str[$code])) {
return $entity;
}
return HTMLPurifier_Encoder::unichr($code);
} else {
if (isset($this->_special_ent2dec[$matches[3]])) {
return $entity;
}
if (!$this->_entity_lookup) {
$this->_entity_lookup = HTMLPurifier_EntityLookup::instance();
}
if (isset($this->_entity_lookup->table[$matches[3]])) {
return $this->_entity_lookup->table[$matches[3]];
} else {
return $entity;
}
}
}
/**
* Substitutes only special entities with their parsed equivalents.
*
* @notice We try to avoid calling this function because otherwise, it
* would have to be called a lot (for every parsed section).
*
* @param string $string String to have non-special entities parsed.
* @return string Parsed string.
*/
public function substituteSpecialEntities($string)
{
return preg_replace_callback(
$this->_substituteEntitiesRegex,
array($this, 'specialEntityCallback'),
$string
);
}
/**
* Callback function for substituteSpecialEntities() that does the work.
*
* This callback has same syntax as nonSpecialEntityCallback().
*
* @param array $matches PCRE-style matches array, with 0 the entire match, and
* either index 1, 2 or 3 set with a hex value, dec value,
* or string (respectively).
* @return string Replacement string.
*/
protected function specialEntityCallback($matches)
{
$entity = $matches[0];
$is_num = (@$matches[0][1] === '#');
if ($is_num) {
$is_hex = (@$entity[2] === 'x');
$int = $is_hex ? hexdec($matches[1]) : (int) $matches[2];
return isset($this->_special_dec2str[$int]) ?
$this->_special_dec2str[$int] :
$entity;
} else {
return isset($this->_special_ent2dec[$matches[3]]) ?
$this->_special_dec2str[$this->_special_ent2dec[$matches[3]]] :
$entity;
}
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/Lexer.php 0000644 00000032172 14716425661 0015005 0 ustar 00 get('Core.LexerImpl');
}
$needs_tracking =
$config->get('Core.MaintainLineNumbers') ||
$config->get('Core.CollectErrors');
$inst = null;
if (is_object($lexer)) {
$inst = $lexer;
} else {
if (is_null($lexer)) {
do {
// auto-detection algorithm
if ($needs_tracking) {
$lexer = 'DirectLex';
break;
}
if (class_exists('DOMDocument', false) &&
method_exists('DOMDocument', 'loadHTML') &&
!extension_loaded('domxml')
) {
// check for DOM support, because while it's part of the
// core, it can be disabled compile time. Also, the PECL
// domxml extension overrides the default DOM, and is evil
// and nasty and we shan't bother to support it
$lexer = 'DOMLex';
} else {
$lexer = 'DirectLex';
}
} while (0);
} // do..while so we can break
// instantiate recognized string names
switch ($lexer) {
case 'DOMLex':
$inst = new HTMLPurifier_Lexer_DOMLex();
break;
case 'DirectLex':
$inst = new HTMLPurifier_Lexer_DirectLex();
break;
case 'PH5P':
$inst = new HTMLPurifier_Lexer_PH5P();
break;
default:
throw new HTMLPurifier_Exception(
"Cannot instantiate unrecognized Lexer type " .
htmlspecialchars($lexer)
);
}
}
if (!$inst) {
throw new HTMLPurifier_Exception('No lexer was instantiated');
}
// once PHP DOM implements native line numbers, or we
// hack out something using XSLT, remove this stipulation
if ($needs_tracking && !$inst->tracksLineNumbers) {
throw new HTMLPurifier_Exception(
'Cannot use lexer that does not support line numbers with ' .
'Core.MaintainLineNumbers or Core.CollectErrors (use DirectLex instead)'
);
}
return $inst;
}
// -- CONVENIENCE MEMBERS ---------------------------------------------
public function __construct()
{
$this->_entity_parser = new HTMLPurifier_EntityParser();
}
/**
* Most common entity to raw value conversion table for special entities.
* @type array
*/
protected $_special_entity2str =
array(
'"' => '"',
'&' => '&',
'<' => '<',
'>' => '>',
''' => "'",
''' => "'",
''' => "'"
);
public function parseText($string, $config) {
return $this->parseData($string, false, $config);
}
public function parseAttr($string, $config) {
return $this->parseData($string, true, $config);
}
/**
* Parses special entities into the proper characters.
*
* This string will translate escaped versions of the special characters
* into the correct ones.
*
* @param string $string String character data to be parsed.
* @return string Parsed character data.
*/
public function parseData($string, $is_attr, $config)
{
// following functions require at least one character
if ($string === '') {
return '';
}
// subtracts amps that cannot possibly be escaped
$num_amp = substr_count($string, '&') - substr_count($string, '& ') -
($string[strlen($string) - 1] === '&' ? 1 : 0);
if (!$num_amp) {
return $string;
} // abort if no entities
$num_esc_amp = substr_count($string, '&');
$string = strtr($string, $this->_special_entity2str);
// code duplication for sake of optimization, see above
$num_amp_2 = substr_count($string, '&') - substr_count($string, '& ') -
($string[strlen($string) - 1] === '&' ? 1 : 0);
if ($num_amp_2 <= $num_esc_amp) {
return $string;
}
// hmm... now we have some uncommon entities. Use the callback.
if ($config->get('Core.LegacyEntityDecoder')) {
$string = $this->_entity_parser->substituteSpecialEntities($string);
} else {
if ($is_attr) {
$string = $this->_entity_parser->substituteAttrEntities($string);
} else {
$string = $this->_entity_parser->substituteTextEntities($string);
}
}
return $string;
}
/**
* Lexes an HTML string into tokens.
* @param $string String HTML.
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return HTMLPurifier_Token[] array representation of HTML.
*/
public function tokenizeHTML($string, $config, $context)
{
trigger_error('Call to abstract class', E_USER_ERROR);
}
/**
* Translates CDATA sections into regular sections (through escaping).
* @param string $string HTML string to process.
* @return string HTML with CDATA sections escaped.
*/
protected static function escapeCDATA($string)
{
return preg_replace_callback(
'//s',
array('HTMLPurifier_Lexer', 'CDATACallback'),
$string
);
}
/**
* Special CDATA case that is especially convoluted for #i', '', $html);
}
return $html;
}
/**
* Takes a string of HTML (fragment or document) and returns the content
* @todo Consider making protected
*/
public function extractBody($html)
{
$matches = array();
$result = preg_match('|(.*?)]*>(.*)|is', $html, $matches);
if ($result) {
// Make sure it's not in a comment
$comment_start = strrpos($matches[1], '');
if ($comment_start === false ||
($comment_end !== false && $comment_end > $comment_start)) {
return $matches[2];
}
}
return $html;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/Context.php 0000644 00000005112 14716425661 0015344 0 ustar 00 _storage)) {
trigger_error(
"Name $name produces collision, cannot re-register",
E_USER_ERROR
);
return;
}
$this->_storage[$name] =& $ref;
}
/**
* Retrieves a variable reference from the context.
* @param string $name String name
* @param bool $ignore_error Boolean whether or not to ignore error
* @return mixed
*/
public function &get($name, $ignore_error = false)
{
if (!array_key_exists($name, $this->_storage)) {
if (!$ignore_error) {
trigger_error(
"Attempted to retrieve non-existent variable $name",
E_USER_ERROR
);
}
$var = null; // so we can return by reference
return $var;
}
return $this->_storage[$name];
}
/**
* Destroys a variable in the context.
* @param string $name String name
*/
public function destroy($name)
{
if (!array_key_exists($name, $this->_storage)) {
trigger_error(
"Attempted to destroy non-existent variable $name",
E_USER_ERROR
);
return;
}
unset($this->_storage[$name]);
}
/**
* Checks whether or not the variable exists.
* @param string $name String name
* @return bool
*/
public function exists($name)
{
return array_key_exists($name, $this->_storage);
}
/**
* Loads a series of variables from an associative array
* @param array $context_array Assoc array of variables to load
*/
public function loadArray($context_array)
{
foreach ($context_array as $key => $discard) {
$this->register($key, $context_array[$key]);
}
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/Node/Text.php 0000644 00000002544 14716425661 0015537 0 ustar 00 data = $data;
$this->is_whitespace = $is_whitespace;
$this->line = $line;
$this->col = $col;
}
public function toTokenPair() {
return array(new HTMLPurifier_Token_Text($this->data, $this->line, $this->col), null);
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/Node/Comment.php 0000644 00000001325 14716425661 0016211 0 ustar 00 data = $data;
$this->line = $line;
$this->col = $col;
}
public function toTokenPair() {
return array(new HTMLPurifier_Token_Comment($this->data, $this->line, $this->col), null);
}
}
htmlpurifier/library/HTMLPurifier/Node/error_log; 0000644 00000062352 14716425661 0016115 0 ustar 00 [28-Nov-2023 10:06:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Element.php on line 6
[28-Nov-2023 10:06:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Text.php on line 12
[28-Nov-2023 10:06:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Comment.php on line 6
[29-Nov-2023 23:47:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Element.php on line 6
[29-Nov-2023 23:47:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Text.php on line 12
[29-Nov-2023 23:47:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Comment.php on line 6
[30-Nov-2023 03:11:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Comment.php on line 6
[30-Nov-2023 03:11:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Element.php on line 6
[30-Nov-2023 03:11:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Text.php on line 12
[01-Dec-2023 23:30:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Comment.php on line 6
[01-Dec-2023 23:30:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Text.php on line 12
[01-Dec-2023 23:30:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Element.php on line 6
[20-Apr-2024 11:35:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Comment.php on line 6
[20-Apr-2024 18:18:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Text.php on line 12
[20-Apr-2024 18:40:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Element.php on line 6
[03-May-2024 06:49:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Text.php on line 12
[03-May-2024 08:37:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Comment.php on line 6
[03-May-2024 19:20:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Element.php on line 6
[05-May-2024 01:07:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Text.php on line 12
[05-May-2024 01:07:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Element.php on line 6
[05-May-2024 01:07:51 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Comment.php on line 6
[05-May-2024 11:03:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Text.php on line 12
[05-May-2024 11:03:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Element.php on line 6
[05-May-2024 11:03:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Comment.php on line 6
[05-May-2024 20:28:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Text.php on line 12
[05-May-2024 20:28:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Element.php on line 6
[05-May-2024 20:29:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Comment.php on line 6
[13-May-2024 19:51:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Comment.php on line 6
[13-May-2024 19:52:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Text.php on line 12
[13-May-2024 23:43:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Element.php on line 6
[14-May-2024 20:12:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Text.php on line 12
[14-May-2024 20:12:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Element.php on line 6
[14-May-2024 20:12:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Comment.php on line 6
[21-May-2024 08:36:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Element.php on line 6
[04-Jun-2024 10:05:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Comment.php on line 6
[04-Jun-2024 10:43:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Element.php on line 6
[04-Jun-2024 22:41:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Text.php on line 12
[14-Jun-2024 09:47:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Element.php on line 6
[14-Jun-2024 09:50:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Text.php on line 12
[14-Jun-2024 10:43:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Comment.php on line 6
[15-Jun-2024 18:25:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Comment.php on line 6
[16-Jun-2024 06:58:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Text.php on line 12
[18-Jun-2024 04:32:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Element.php on line 6
[18-Jun-2024 22:55:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Text.php on line 12
[18-Jun-2024 22:55:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Element.php on line 6
[18-Jun-2024 22:55:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Comment.php on line 6
[19-Jun-2024 07:53:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Text.php on line 12
[19-Jun-2024 07:53:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Element.php on line 6
[19-Jun-2024 07:53:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Comment.php on line 6
[19-Jun-2024 20:42:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Text.php on line 12
[19-Jun-2024 20:42:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Element.php on line 6
[19-Jun-2024 20:42:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Comment.php on line 6
[29-Jun-2024 23:48:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Element.php on line 6
[02-Jul-2024 10:40:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Comment.php on line 6
[06-Jul-2024 04:53:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Element.php on line 6
[09-Jul-2024 08:26:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Element.php on line 6
[09-Jul-2024 13:10:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Text.php on line 12
[10-Jul-2024 03:39:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Comment.php on line 6
[19-Jul-2024 08:25:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Comment.php on line 6
[22-Jul-2024 19:29:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Text.php on line 12
[22-Jul-2024 19:29:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Element.php on line 6
[22-Jul-2024 19:29:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Comment.php on line 6
[23-Jul-2024 04:31:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Comment.php on line 6
[25-Jul-2024 01:24:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Element.php on line 6
[25-Jul-2024 13:52:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Text.php on line 12
[27-Jul-2024 05:09:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Text.php on line 12
[29-Jul-2024 01:33:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Comment.php on line 6
[03-Aug-2024 15:29:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Text.php on line 12
[04-Aug-2024 14:31:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Comment.php on line 6
[15-Aug-2024 11:57:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Element.php on line 6
[20-Aug-2024 15:45:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Text.php on line 12
[21-Aug-2024 05:52:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Comment.php on line 6
[23-Aug-2024 14:16:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Element.php on line 6
[26-Aug-2024 08:04:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Element.php on line 6
[26-Aug-2024 20:05:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Text.php on line 12
[31-Aug-2024 08:49:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Comment.php on line 6
[31-Aug-2024 23:53:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Text.php on line 12
[01-Sep-2024 02:35:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Element.php on line 6
[01-Sep-2024 17:28:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Text.php on line 12
[01-Sep-2024 23:18:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Text.php on line 12
[01-Sep-2024 23:18:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Element.php on line 6
[01-Sep-2024 23:18:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Comment.php on line 6
[05-Sep-2024 08:16:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Element.php on line 6
[07-Sep-2024 19:40:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Text.php on line 12
[11-Sep-2024 22:58:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Text.php on line 12
[11-Sep-2024 22:58:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Element.php on line 6
[11-Sep-2024 22:58:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Comment.php on line 6
[13-Sep-2024 06:45:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Text.php on line 12
[13-Sep-2024 06:45:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Element.php on line 6
[13-Sep-2024 06:45:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Comment.php on line 6
[13-Sep-2024 06:46:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Text.php on line 12
[13-Sep-2024 06:46:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Element.php on line 6
[13-Sep-2024 06:46:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Comment.php on line 6
[13-Sep-2024 10:53:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Text.php on line 12
[15-Sep-2024 05:20:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Element.php on line 6
[17-Sep-2024 20:21:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Text.php on line 12
[18-Sep-2024 02:11:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Text.php on line 12
[19-Sep-2024 22:51:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Element.php on line 6
[21-Sep-2024 11:24:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Element.php on line 6
[21-Sep-2024 12:40:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Comment.php on line 6
[22-Sep-2024 14:58:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Element.php on line 6
[27-Sep-2024 18:45:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Element.php on line 6
[28-Sep-2024 08:32:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Comment.php on line 6
[28-Sep-2024 19:00:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Text.php on line 12
[30-Sep-2024 21:55:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Comment.php on line 6
[07-Oct-2024 00:29:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Text.php on line 12
[08-Oct-2024 03:07:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Comment.php on line 6
[09-Oct-2024 10:11:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Text.php on line 12
[09-Oct-2024 15:53:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Element.php on line 6
[11-Oct-2024 07:46:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Element.php on line 6
[17-Oct-2024 12:32:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Element.php on line 6
[18-Oct-2024 16:27:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Text.php on line 12
[18-Oct-2024 16:32:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Comment.php on line 6
[18-Oct-2024 16:33:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Element.php on line 6
[18-Oct-2024 17:15:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Comment.php on line 6
[30-Oct-2024 17:00:51 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Element.php on line 6
[31-Oct-2024 14:06:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Text.php on line 12
[31-Oct-2024 14:06:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Element.php on line 6
[31-Oct-2024 14:06:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Comment.php on line 6
[06-Nov-2024 08:01:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Text.php on line 12
[06-Nov-2024 14:50:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Comment.php on line 6
[10-Nov-2024 05:01:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Text.php on line 12
[10-Nov-2024 05:01:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Element.php on line 6
[10-Nov-2024 05:01:51 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Node' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/Comment.php on line 6
htmlpurifier/library/HTMLPurifier/Node/Element.php 0000644 00000003275 14716425661 0016206 0 ustar 00 form or the form, i.e.
* is it a pair of start/end tokens or an empty token.
* @bool
*/
public $empty = false;
public $endCol = null, $endLine = null, $endArmor = array();
public function __construct($name, $attr = array(), $line = null, $col = null, $armor = array()) {
$this->name = $name;
$this->attr = $attr;
$this->line = $line;
$this->col = $col;
$this->armor = $armor;
}
public function toTokenPair() {
// XXX inefficiency here, normalization is not necessary
if ($this->empty) {
return array(new HTMLPurifier_Token_Empty($this->name, $this->attr, $this->line, $this->col, $this->armor), null);
} else {
$start = new HTMLPurifier_Token_Start($this->name, $this->attr, $this->line, $this->col, $this->armor);
$end = new HTMLPurifier_Token_End($this->name, array(), $this->endLine, $this->endCol, $this->endArmor);
//$end->start = $start;
return array($start, $end);
}
}
}
htmlpurifier/library/HTMLPurifier/Exception.php 0000644 00000000261 14716425661 0015656 0 ustar 00 registerFilter(new HTMLPurifier_URIFilter_DisableExternal());
$this->registerFilter(new HTMLPurifier_URIFilter_DisableExternalResources());
$this->registerFilter(new HTMLPurifier_URIFilter_DisableResources());
$this->registerFilter(new HTMLPurifier_URIFilter_HostBlacklist());
$this->registerFilter(new HTMLPurifier_URIFilter_SafeIframe());
$this->registerFilter(new HTMLPurifier_URIFilter_MakeAbsolute());
$this->registerFilter(new HTMLPurifier_URIFilter_Munge());
}
public function registerFilter($filter)
{
$this->registeredFilters[$filter->name] = $filter;
}
public function addFilter($filter, $config)
{
$r = $filter->prepare($config);
if ($r === false) return; // null is ok, for backwards compat
if ($filter->post) {
$this->postFilters[$filter->name] = $filter;
} else {
$this->filters[$filter->name] = $filter;
}
}
protected function doSetup($config)
{
$this->setupMemberVariables($config);
$this->setupFilters($config);
}
protected function setupFilters($config)
{
foreach ($this->registeredFilters as $name => $filter) {
if ($filter->always_load) {
$this->addFilter($filter, $config);
} else {
$conf = $config->get('URI.' . $name);
if ($conf !== false && $conf !== null) {
$this->addFilter($filter, $config);
}
}
}
unset($this->registeredFilters);
}
protected function setupMemberVariables($config)
{
$this->host = $config->get('URI.Host');
$base_uri = $config->get('URI.Base');
if (!is_null($base_uri)) {
$parser = new HTMLPurifier_URIParser();
$this->base = $parser->parse($base_uri);
$this->defaultScheme = $this->base->scheme;
if (is_null($this->host)) $this->host = $this->base->host;
}
if (is_null($this->defaultScheme)) $this->defaultScheme = $config->get('URI.DefaultScheme');
}
public function getDefaultScheme($config, $context)
{
return HTMLPurifier_URISchemeRegistry::instance()->getScheme($this->defaultScheme, $config, $context);
}
public function filter(&$uri, $config, $context)
{
foreach ($this->filters as $name => $f) {
$result = $f->filter($uri, $config, $context);
if (!$result) return false;
}
return true;
}
public function postFilter(&$uri, $config, $context)
{
foreach ($this->postFilters as $name => $f) {
$result = $f->filter($uri, $config, $context);
if (!$result) return false;
}
return true;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/Injector.php 0000644 00000021333 14716425661 0015500 0 ustar 00 processToken()
* documentation.
*
* @todo Allow injectors to request a re-run on their output. This
* would help if an operation is recursive.
*/
abstract class HTMLPurifier_Injector
{
/**
* Advisory name of injector, this is for friendly error messages.
* @type string
*/
public $name;
/**
* @type HTMLPurifier_HTMLDefinition
*/
protected $htmlDefinition;
/**
* Reference to CurrentNesting variable in Context. This is an array
* list of tokens that we are currently "inside"
* @type array
*/
protected $currentNesting;
/**
* Reference to current token.
* @type HTMLPurifier_Token
*/
protected $currentToken;
/**
* Reference to InputZipper variable in Context.
* @type HTMLPurifier_Zipper
*/
protected $inputZipper;
/**
* Array of elements and attributes this injector creates and therefore
* need to be allowed by the definition. Takes form of
* array('element' => array('attr', 'attr2'), 'element2')
* @type array
*/
public $needed = array();
/**
* Number of elements to rewind backwards (relative).
* @type bool|int
*/
protected $rewindOffset = false;
/**
* Rewind to a spot to re-perform processing. This is useful if you
* deleted a node, and now need to see if this change affected any
* earlier nodes. Rewinding does not affect other injectors, and can
* result in infinite loops if not used carefully.
* @param bool|int $offset
* @warning HTML Purifier will prevent you from fast-forwarding with this
* function.
*/
public function rewindOffset($offset)
{
$this->rewindOffset = $offset;
}
/**
* Retrieves rewind offset, and then unsets it.
* @return bool|int
*/
public function getRewindOffset()
{
$r = $this->rewindOffset;
$this->rewindOffset = false;
return $r;
}
/**
* Prepares the injector by giving it the config and context objects:
* this allows references to important variables to be made within
* the injector. This function also checks if the HTML environment
* will work with the Injector (see checkNeeded()).
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return bool|string Boolean false if success, string of missing needed element/attribute if failure
*/
public function prepare($config, $context)
{
$this->htmlDefinition = $config->getHTMLDefinition();
// Even though this might fail, some unit tests ignore this and
// still test checkNeeded, so be careful. Maybe get rid of that
// dependency.
$result = $this->checkNeeded($config);
if ($result !== false) {
return $result;
}
$this->currentNesting =& $context->get('CurrentNesting');
$this->currentToken =& $context->get('CurrentToken');
$this->inputZipper =& $context->get('InputZipper');
return false;
}
/**
* This function checks if the HTML environment
* will work with the Injector: if p tags are not allowed, the
* Auto-Paragraphing injector should not be enabled.
* @param HTMLPurifier_Config $config
* @return bool|string Boolean false if success, string of missing needed element/attribute if failure
*/
public function checkNeeded($config)
{
$def = $config->getHTMLDefinition();
foreach ($this->needed as $element => $attributes) {
if (is_int($element)) {
$element = $attributes;
}
if (!isset($def->info[$element])) {
return $element;
}
if (!is_array($attributes)) {
continue;
}
foreach ($attributes as $name) {
if (!isset($def->info[$element]->attr[$name])) {
return "$element.$name";
}
}
}
return false;
}
/**
* Tests if the context node allows a certain element
* @param string $name Name of element to test for
* @return bool True if element is allowed, false if it is not
*/
public function allowsElement($name)
{
if (!empty($this->currentNesting)) {
$parent_token = array_pop($this->currentNesting);
$this->currentNesting[] = $parent_token;
$parent = $this->htmlDefinition->info[$parent_token->name];
} else {
$parent = $this->htmlDefinition->info_parent_def;
}
if (!isset($parent->child->elements[$name]) || isset($parent->excludes[$name])) {
return false;
}
// check for exclusion
for ($i = count($this->currentNesting) - 2; $i >= 0; $i--) {
$node = $this->currentNesting[$i];
$def = $this->htmlDefinition->info[$node->name];
if (isset($def->excludes[$name])) {
return false;
}
}
return true;
}
/**
* Iterator function, which starts with the next token and continues until
* you reach the end of the input tokens.
* @warning Please prevent previous references from interfering with this
* functions by setting $i = null beforehand!
* @param int $i Current integer index variable for inputTokens
* @param HTMLPurifier_Token $current Current token variable.
* Do NOT use $token, as that variable is also a reference
* @return bool
*/
protected function forward(&$i, &$current)
{
if ($i === null) {
$i = count($this->inputZipper->back) - 1;
} else {
$i--;
}
if ($i < 0) {
return false;
}
$current = $this->inputZipper->back[$i];
return true;
}
/**
* Similar to _forward, but accepts a third parameter $nesting (which
* should be initialized at 0) and stops when we hit the end tag
* for the node $this->inputIndex starts in.
* @param int $i Current integer index variable for inputTokens
* @param HTMLPurifier_Token $current Current token variable.
* Do NOT use $token, as that variable is also a reference
* @param int $nesting
* @return bool
*/
protected function forwardUntilEndToken(&$i, &$current, &$nesting)
{
$result = $this->forward($i, $current);
if (!$result) {
return false;
}
if ($nesting === null) {
$nesting = 0;
}
if ($current instanceof HTMLPurifier_Token_Start) {
$nesting++;
} elseif ($current instanceof HTMLPurifier_Token_End) {
if ($nesting <= 0) {
return false;
}
$nesting--;
}
return true;
}
/**
* Iterator function, starts with the previous token and continues until
* you reach the beginning of input tokens.
* @warning Please prevent previous references from interfering with this
* functions by setting $i = null beforehand!
* @param int $i Current integer index variable for inputTokens
* @param HTMLPurifier_Token $current Current token variable.
* Do NOT use $token, as that variable is also a reference
* @return bool
*/
protected function backward(&$i, &$current)
{
if ($i === null) {
$i = count($this->inputZipper->front) - 1;
} else {
$i--;
}
if ($i < 0) {
return false;
}
$current = $this->inputZipper->front[$i];
return true;
}
/**
* Handler that is called when a text token is processed
*/
public function handleText(&$token)
{
}
/**
* Handler that is called when a start or empty token is processed
*/
public function handleElement(&$token)
{
}
/**
* Handler that is called when an end token is processed
*/
public function handleEnd(&$token)
{
$this->notifyEnd($token);
}
/**
* Notifier that is called when an end token is processed
* @param HTMLPurifier_Token $token Current token variable.
* @note This differs from handlers in that the token is read-only
* @deprecated
*/
public function notifyEnd($token)
{
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/AttrTransform.php 0000644 00000003705 14716425661 0016534 0 ustar 00 info, since the object's data is only info,
* with extra behavior associated with it.
* @type array
*/
public $attr_collections = array();
/**
* Associative array of deprecated tag name to HTMLPurifier_TagTransform.
* @type array
*/
public $info_tag_transform = array();
/**
* List of HTMLPurifier_AttrTransform to be performed before validation.
* @type array
*/
public $info_attr_transform_pre = array();
/**
* List of HTMLPurifier_AttrTransform to be performed after validation.
* @type array
*/
public $info_attr_transform_post = array();
/**
* List of HTMLPurifier_Injector to be performed during well-formedness fixing.
* An injector will only be invoked if all of it's pre-requisites are met;
* if an injector fails setup, there will be no error; it will simply be
* silently disabled.
* @type array
*/
public $info_injector = array();
/**
* Boolean flag that indicates whether or not getChildDef is implemented.
* For optimization reasons: may save a call to a function. Be sure
* to set it if you do implement getChildDef(), otherwise it will have
* no effect!
* @type bool
*/
public $defines_child_def = false;
/**
* Boolean flag whether or not this module is safe. If it is not safe, all
* of its members are unsafe. Modules are safe by default (this might be
* slightly dangerous, but it doesn't make much sense to force HTML Purifier,
* which is based off of safe HTML, to explicitly say, "This is safe," even
* though there are modules which are "unsafe")
*
* @type bool
* @note Previously, safety could be applied at an element level granularity.
* We've removed this ability, so in order to add "unsafe" elements
* or attributes, a dedicated module with this property set to false
* must be used.
*/
public $safe = true;
/**
* Retrieves a proper HTMLPurifier_ChildDef subclass based on
* content_model and content_model_type member variables of
* the HTMLPurifier_ElementDef class. There is a similar function
* in HTMLPurifier_HTMLDefinition.
* @param HTMLPurifier_ElementDef $def
* @return HTMLPurifier_ChildDef subclass
*/
public function getChildDef($def)
{
return false;
}
// -- Convenience -----------------------------------------------------
/**
* Convenience function that sets up a new element
* @param string $element Name of element to add
* @param string|bool $type What content set should element be registered to?
* Set as false to skip this step.
* @param string $contents Allowed children in form of:
* "$content_model_type: $content_model"
* @param array $attr_includes What attribute collections to register to
* element?
* @param array $attr What unique attributes does the element define?
* @see HTMLPurifier_ElementDef:: for in-depth descriptions of these parameters.
* @return HTMLPurifier_ElementDef Created element definition object, so you
* can set advanced parameters
*/
public function addElement($element, $type, $contents, $attr_includes = array(), $attr = array())
{
$this->elements[] = $element;
// parse content_model
list($content_model_type, $content_model) = $this->parseContents($contents);
// merge in attribute inclusions
$this->mergeInAttrIncludes($attr, $attr_includes);
// add element to content sets
if ($type) {
$this->addElementToContentSet($element, $type);
}
// create element
$this->info[$element] = HTMLPurifier_ElementDef::create(
$content_model,
$content_model_type,
$attr
);
// literal object $contents means direct child manipulation
if (!is_string($contents)) {
$this->info[$element]->child = $contents;
}
return $this->info[$element];
}
/**
* Convenience function that creates a totally blank, non-standalone
* element.
* @param string $element Name of element to create
* @return HTMLPurifier_ElementDef Created element
*/
public function addBlankElement($element)
{
if (!isset($this->info[$element])) {
$this->elements[] = $element;
$this->info[$element] = new HTMLPurifier_ElementDef();
$this->info[$element]->standalone = false;
} else {
trigger_error("Definition for $element already exists in module, cannot redefine");
}
return $this->info[$element];
}
/**
* Convenience function that registers an element to a content set
* @param string $element Element to register
* @param string $type Name content set (warning: case sensitive, usually upper-case
* first letter)
*/
public function addElementToContentSet($element, $type)
{
if (!isset($this->content_sets[$type])) {
$this->content_sets[$type] = '';
} else {
$this->content_sets[$type] .= ' | ';
}
$this->content_sets[$type] .= $element;
}
/**
* Convenience function that transforms single-string contents
* into separate content model and content model type
* @param string $contents Allowed children in form of:
* "$content_model_type: $content_model"
* @return array
* @note If contents is an object, an array of two nulls will be
* returned, and the callee needs to take the original $contents
* and use it directly.
*/
public function parseContents($contents)
{
if (!is_string($contents)) {
return array(null, null);
} // defer
switch ($contents) {
// check for shorthand content model forms
case 'Empty':
return array('empty', '');
case 'Inline':
return array('optional', 'Inline | #PCDATA');
case 'Flow':
return array('optional', 'Flow | #PCDATA');
}
list($content_model_type, $content_model) = explode(':', $contents);
$content_model_type = strtolower(trim($content_model_type));
$content_model = trim($content_model);
return array($content_model_type, $content_model);
}
/**
* Convenience function that merges a list of attribute includes into
* an attribute array.
* @param array $attr Reference to attr array to modify
* @param array $attr_includes Array of includes / string include to merge in
*/
public function mergeInAttrIncludes(&$attr, $attr_includes)
{
if (!is_array($attr_includes)) {
if (empty($attr_includes)) {
$attr_includes = array();
} else {
$attr_includes = array($attr_includes);
}
}
$attr[0] = $attr_includes;
}
/**
* Convenience function that generates a lookup table with boolean
* true as value.
* @param string $list List of values to turn into a lookup
* @note You can also pass an arbitrary number of arguments in
* place of the regular argument
* @return array array equivalent of list
*/
public function makeLookup($list)
{
if (is_string($list)) {
$list = func_get_args();
}
$ret = array();
foreach ($list as $value) {
if (is_null($value)) {
continue;
}
$ret[$value] = true;
}
return $ret;
}
/**
* Lazy load construction of the module after determining whether
* or not it's needed, and also when a finalized configuration object
* is available.
* @param HTMLPurifier_Config $config
*/
public function setup($config)
{
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/AttrCollections.php 0000644 00000011376 14716425661 0017042 0 ustar 00 doConstruct($attr_types, $modules);
}
public function doConstruct($attr_types, $modules)
{
// load extensions from the modules
foreach ($modules as $module) {
foreach ($module->attr_collections as $coll_i => $coll) {
if (!isset($this->info[$coll_i])) {
$this->info[$coll_i] = array();
}
foreach ($coll as $attr_i => $attr) {
if ($attr_i === 0 && isset($this->info[$coll_i][$attr_i])) {
// merge in includes
$this->info[$coll_i][$attr_i] = array_merge(
$this->info[$coll_i][$attr_i],
$attr
);
continue;
}
$this->info[$coll_i][$attr_i] = $attr;
}
}
}
// perform internal expansions and inclusions
foreach ($this->info as $name => $attr) {
// merge attribute collections that include others
$this->performInclusions($this->info[$name]);
// replace string identifiers with actual attribute objects
$this->expandIdentifiers($this->info[$name], $attr_types);
}
}
/**
* Takes a reference to an attribute associative array and performs
* all inclusions specified by the zero index.
* @param array &$attr Reference to attribute array
*/
public function performInclusions(&$attr)
{
if (!isset($attr[0])) {
return;
}
$merge = $attr[0];
$seen = array(); // recursion guard
// loop through all the inclusions
for ($i = 0; isset($merge[$i]); $i++) {
if (isset($seen[$merge[$i]])) {
continue;
}
$seen[$merge[$i]] = true;
// foreach attribute of the inclusion, copy it over
if (!isset($this->info[$merge[$i]])) {
continue;
}
foreach ($this->info[$merge[$i]] as $key => $value) {
if (isset($attr[$key])) {
continue;
} // also catches more inclusions
$attr[$key] = $value;
}
if (isset($this->info[$merge[$i]][0])) {
// recursion
$merge = array_merge($merge, $this->info[$merge[$i]][0]);
}
}
unset($attr[0]);
}
/**
* Expands all string identifiers in an attribute array by replacing
* them with the appropriate values inside HTMLPurifier_AttrTypes
* @param array &$attr Reference to attribute array
* @param HTMLPurifier_AttrTypes $attr_types HTMLPurifier_AttrTypes instance
*/
public function expandIdentifiers(&$attr, $attr_types)
{
// because foreach will process new elements we add, make sure we
// skip duplicates
$processed = array();
foreach ($attr as $def_i => $def) {
// skip inclusions
if ($def_i === 0) {
continue;
}
if (isset($processed[$def_i])) {
continue;
}
// determine whether or not attribute is required
if ($required = (strpos($def_i, '*') !== false)) {
// rename the definition
unset($attr[$def_i]);
$def_i = trim($def_i, '*');
$attr[$def_i] = $def;
}
$processed[$def_i] = true;
// if we've already got a literal object, move on
if (is_object($def)) {
// preserve previous required
$attr[$def_i]->required = ($required || $attr[$def_i]->required);
continue;
}
if ($def === false) {
unset($attr[$def_i]);
continue;
}
if ($t = $attr_types->get($def)) {
$attr[$def_i] = $t;
$attr[$def_i]->required = $required;
} else {
unset($attr[$def_i]);
}
}
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/UnitConverter.php 0000644 00000023622 14716425661 0016535 0 ustar 00 array(
'px' => 3, // This is as per CSS 2.1 and Firefox. Your mileage may vary
'pt' => 4,
'pc' => 48,
'in' => 288,
self::METRIC => array('pt', '0.352777778', 'mm'),
),
self::METRIC => array(
'mm' => 1,
'cm' => 10,
self::ENGLISH => array('mm', '2.83464567', 'pt'),
),
);
/**
* Minimum bcmath precision for output.
* @type int
*/
protected $outputPrecision;
/**
* Bcmath precision for internal calculations.
* @type int
*/
protected $internalPrecision;
/**
* Whether or not BCMath is available.
* @type bool
*/
private $bcmath;
public function __construct($output_precision = 4, $internal_precision = 10, $force_no_bcmath = false)
{
$this->outputPrecision = $output_precision;
$this->internalPrecision = $internal_precision;
$this->bcmath = !$force_no_bcmath && function_exists('bcmul');
}
/**
* Converts a length object of one unit into another unit.
* @param HTMLPurifier_Length $length
* Instance of HTMLPurifier_Length to convert. You must validate()
* it before passing it here!
* @param string $to_unit
* Unit to convert to.
* @return HTMLPurifier_Length|bool
* @note
* About precision: This conversion function pays very special
* attention to the incoming precision of values and attempts
* to maintain a number of significant figure. Results are
* fairly accurate up to nine digits. Some caveats:
* - If a number is zero-padded as a result of this significant
* figure tracking, the zeroes will be eliminated.
* - If a number contains less than four sigfigs ($outputPrecision)
* and this causes some decimals to be excluded, those
* decimals will be added on.
*/
public function convert($length, $to_unit)
{
if (!$length->isValid()) {
return false;
}
$n = $length->getN();
$unit = $length->getUnit();
if ($n === '0' || $unit === false) {
return new HTMLPurifier_Length('0', false);
}
$state = $dest_state = false;
foreach (self::$units as $k => $x) {
if (isset($x[$unit])) {
$state = $k;
}
if (isset($x[$to_unit])) {
$dest_state = $k;
}
}
if (!$state || !$dest_state) {
return false;
}
// Some calculations about the initial precision of the number;
// this will be useful when we need to do final rounding.
$sigfigs = $this->getSigFigs($n);
if ($sigfigs < $this->outputPrecision) {
$sigfigs = $this->outputPrecision;
}
// BCMath's internal precision deals only with decimals. Use
// our default if the initial number has no decimals, or increase
// it by how ever many decimals, thus, the number of guard digits
// will always be greater than or equal to internalPrecision.
$log = (int)floor(log(abs($n), 10));
$cp = ($log < 0) ? $this->internalPrecision - $log : $this->internalPrecision; // internal precision
for ($i = 0; $i < 2; $i++) {
// Determine what unit IN THIS SYSTEM we need to convert to
if ($dest_state === $state) {
// Simple conversion
$dest_unit = $to_unit;
} else {
// Convert to the smallest unit, pending a system shift
$dest_unit = self::$units[$state][$dest_state][0];
}
// Do the conversion if necessary
if ($dest_unit !== $unit) {
$factor = $this->div(self::$units[$state][$unit], self::$units[$state][$dest_unit], $cp);
$n = $this->mul($n, $factor, $cp);
$unit = $dest_unit;
}
// Output was zero, so bail out early. Shouldn't ever happen.
if ($n === '') {
$n = '0';
$unit = $to_unit;
break;
}
// It was a simple conversion, so bail out
if ($dest_state === $state) {
break;
}
if ($i !== 0) {
// Conversion failed! Apparently, the system we forwarded
// to didn't have this unit. This should never happen!
return false;
}
// Pre-condition: $i == 0
// Perform conversion to next system of units
$n = $this->mul($n, self::$units[$state][$dest_state][1], $cp);
$unit = self::$units[$state][$dest_state][2];
$state = $dest_state;
// One more loop around to convert the unit in the new system.
}
// Post-condition: $unit == $to_unit
if ($unit !== $to_unit) {
return false;
}
// Useful for debugging:
//echo "n";
//echo "$n\nsigfigs = $sigfigs\nnew_log = $new_log\nlog = $log\nrp = $rp\n
\n";
$n = $this->round($n, $sigfigs);
if (strpos($n, '.') !== false) {
$n = rtrim($n, '0');
}
$n = rtrim($n, '.');
return new HTMLPurifier_Length($n, $unit);
}
/**
* Returns the number of significant figures in a string number.
* @param string $n Decimal number
* @return int number of sigfigs
*/
public function getSigFigs($n)
{
$n = ltrim($n, '0+-');
$dp = strpos($n, '.'); // decimal position
if ($dp === false) {
$sigfigs = strlen(rtrim($n, '0'));
} else {
$sigfigs = strlen(ltrim($n, '0.')); // eliminate extra decimal character
if ($dp !== 0) {
$sigfigs--;
}
}
return $sigfigs;
}
/**
* Adds two numbers, using arbitrary precision when available.
* @param string $s1
* @param string $s2
* @param int $scale
* @return string
*/
private function add($s1, $s2, $scale)
{
if ($this->bcmath) {
return bcadd($s1, $s2, $scale);
} else {
return $this->scale((float)$s1 + (float)$s2, $scale);
}
}
/**
* Multiples two numbers, using arbitrary precision when available.
* @param string $s1
* @param string $s2
* @param int $scale
* @return string
*/
private function mul($s1, $s2, $scale)
{
if ($this->bcmath) {
return bcmul($s1, $s2, $scale);
} else {
return $this->scale((float)$s1 * (float)$s2, $scale);
}
}
/**
* Divides two numbers, using arbitrary precision when available.
* @param string $s1
* @param string $s2
* @param int $scale
* @return string
*/
private function div($s1, $s2, $scale)
{
if ($this->bcmath) {
return bcdiv($s1, $s2, $scale);
} else {
return $this->scale((float)$s1 / (float)$s2, $scale);
}
}
/**
* Rounds a number according to the number of sigfigs it should have,
* using arbitrary precision when available.
* @param float $n
* @param int $sigfigs
* @return string
*/
private function round($n, $sigfigs)
{
$new_log = (int)floor(log(abs($n), 10)); // Number of digits left of decimal - 1
$rp = $sigfigs - $new_log - 1; // Number of decimal places needed
$neg = $n < 0 ? '-' : ''; // Negative sign
if ($this->bcmath) {
if ($rp >= 0) {
$n = bcadd($n, $neg . '0.' . str_repeat('0', $rp) . '5', $rp + 1);
$n = bcdiv($n, '1', $rp);
} else {
// This algorithm partially depends on the standardized
// form of numbers that comes out of bcmath.
$n = bcadd($n, $neg . '5' . str_repeat('0', $new_log - $sigfigs), 0);
$n = substr($n, 0, $sigfigs + strlen($neg)) . str_repeat('0', $new_log - $sigfigs + 1);
}
return $n;
} else {
return $this->scale(round($n, $sigfigs - $new_log - 1), $rp + 1);
}
}
/**
* Scales a float to $scale digits right of decimal point, like BCMath.
* @param float $r
* @param int $scale
* @return string
*/
private function scale($r, $scale)
{
if ($scale < 0) {
// The f sprintf type doesn't support negative numbers, so we
// need to cludge things manually. First get the string.
$r = sprintf('%.0f', (float)$r);
// Due to floating point precision loss, $r will more than likely
// look something like 4652999999999.9234. We grab one more digit
// than we need to precise from $r and then use that to round
// appropriately.
$precise = (string)round(substr($r, 0, strlen($r) + $scale), -1);
// Now we return it, truncating the zero that was rounded off.
return substr($precise, 0, -1) . str_repeat('0', -$scale + 1);
}
return sprintf('%.' . $scale . 'f', (float)$r);
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/DefinitionCache.php 0000644 00000007511 14716425661 0016741 0 ustar 00 type = $type;
}
/**
* Generates a unique identifier for a particular configuration
* @param HTMLPurifier_Config $config Instance of HTMLPurifier_Config
* @return string
*/
public function generateKey($config)
{
return $config->version . ',' . // possibly replace with function calls
$config->getBatchSerial($this->type) . ',' .
$config->get($this->type . '.DefinitionRev');
}
/**
* Tests whether or not a key is old with respect to the configuration's
* version and revision number.
* @param string $key Key to test
* @param HTMLPurifier_Config $config Instance of HTMLPurifier_Config to test against
* @return bool
*/
public function isOld($key, $config)
{
if (substr_count($key, ',') < 2) {
return true;
}
list($version, $hash, $revision) = explode(',', $key, 3);
$compare = version_compare($version, $config->version);
// version mismatch, is always old
if ($compare != 0) {
return true;
}
// versions match, ids match, check revision number
if ($hash == $config->getBatchSerial($this->type) &&
$revision < $config->get($this->type . '.DefinitionRev')) {
return true;
}
return false;
}
/**
* Checks if a definition's type jives with the cache's type
* @note Throws an error on failure
* @param HTMLPurifier_Definition $def Definition object to check
* @return bool true if good, false if not
*/
public function checkDefType($def)
{
if ($def->type !== $this->type) {
trigger_error("Cannot use definition of type {$def->type} in cache for {$this->type}");
return false;
}
return true;
}
/**
* Adds a definition object to the cache
* @param HTMLPurifier_Definition $def
* @param HTMLPurifier_Config $config
*/
abstract public function add($def, $config);
/**
* Unconditionally saves a definition object to the cache
* @param HTMLPurifier_Definition $def
* @param HTMLPurifier_Config $config
*/
abstract public function set($def, $config);
/**
* Replace an object in the cache
* @param HTMLPurifier_Definition $def
* @param HTMLPurifier_Config $config
*/
abstract public function replace($def, $config);
/**
* Retrieves a definition object from the cache
* @param HTMLPurifier_Config $config
*/
abstract public function get($config);
/**
* Removes a definition object to the cache
* @param HTMLPurifier_Config $config
*/
abstract public function remove($config);
/**
* Clears all objects from cache
* @param HTMLPurifier_Config $config
*/
abstract public function flush($config);
/**
* Clears all expired (older version or revision) objects from cache
* @note Be careful implementing this method as flush. Flush must
* not interfere with other Definition types, and cleanup()
* should not be repeatedly called by userland code.
* @param HTMLPurifier_Config $config
*/
abstract public function cleanup($config);
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/Filter/YouTube.php 0000644 00000003452 14716425661 0016546 0 ustar 00 ]+>.+?' .
'(?:http:)?//www.youtube.com/((?:v|cp)/[A-Za-z0-9\-_=]+).+?#s';
$pre_replace = '\1';
return preg_replace($pre_regex, $pre_replace, $html);
}
/**
* @param string $html
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return string
*/
public function postFilter($html, $config, $context)
{
$post_regex = '#((?:v|cp)/[A-Za-z0-9\-_=]+)#';
return preg_replace_callback($post_regex, array($this, 'postFilterCallback'), $html);
}
/**
* @param $url
* @return string
*/
protected function armorUrl($url)
{
return str_replace('--', '--', $url);
}
/**
* @param array $matches
* @return string
*/
protected function postFilterCallback($matches)
{
$url = $this->armorUrl($matches[1]);
return '';
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/Filter/error_log; 0000644 00000046332 14716425661 0016455 0 ustar 00 [24-Sep-2023 03:25:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/YouTube.php on line 3
[23-Nov-2023 02:49:51 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/ExtractStyleBlocks.php on line 25
[29-Nov-2023 00:48:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/YouTube.php on line 3
[29-Nov-2023 00:48:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/ExtractStyleBlocks.php on line 25
[29-Nov-2023 06:01:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/YouTube.php on line 3
[29-Nov-2023 06:01:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/ExtractStyleBlocks.php on line 25
[29-Nov-2023 19:45:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/YouTube.php on line 3
[29-Nov-2023 19:45:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/ExtractStyleBlocks.php on line 25
[01-Dec-2023 21:07:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/YouTube.php on line 3
[01-Dec-2023 22:19:51 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/ExtractStyleBlocks.php on line 25
[01-Dec-2023 22:19:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/YouTube.php on line 3
[05-Jan-2024 19:00:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/ExtractStyleBlocks.php on line 25
[17-Jan-2024 16:56:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/YouTube.php on line 3
[18-Mar-2024 16:53:51 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/ExtractStyleBlocks.php on line 25
[01-Apr-2024 12:13:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/YouTube.php on line 3
[01-Apr-2024 12:55:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/ExtractStyleBlocks.php on line 25
[10-Apr-2024 09:24:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/YouTube.php on line 3
[03-May-2024 06:20:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/YouTube.php on line 3
[03-May-2024 16:55:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/ExtractStyleBlocks.php on line 25
[05-May-2024 01:08:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/YouTube.php on line 3
[05-May-2024 01:42:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/ExtractStyleBlocks.php on line 25
[05-May-2024 11:04:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/YouTube.php on line 3
[05-May-2024 11:37:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/ExtractStyleBlocks.php on line 25
[05-May-2024 20:29:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/YouTube.php on line 3
[05-May-2024 21:02:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/ExtractStyleBlocks.php on line 25
[11-May-2024 15:59:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/YouTube.php on line 3
[13-May-2024 11:19:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/YouTube.php on line 3
[13-May-2024 11:30:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/ExtractStyleBlocks.php on line 25
[14-May-2024 20:12:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/YouTube.php on line 3
[14-May-2024 20:22:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/ExtractStyleBlocks.php on line 25
[17-May-2024 06:00:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/ExtractStyleBlocks.php on line 25
[19-May-2024 10:46:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/ExtractStyleBlocks.php on line 25
[22-May-2024 12:40:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/YouTube.php on line 3
[29-May-2024 03:58:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/YouTube.php on line 3
[31-May-2024 09:02:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/YouTube.php on line 3
[14-Jun-2024 12:14:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/ExtractStyleBlocks.php on line 25
[15-Jun-2024 07:31:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/YouTube.php on line 3
[15-Jun-2024 15:39:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/ExtractStyleBlocks.php on line 25
[18-Jun-2024 22:55:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/YouTube.php on line 3
[18-Jun-2024 23:02:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/ExtractStyleBlocks.php on line 25
[19-Jun-2024 07:53:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/YouTube.php on line 3
[19-Jun-2024 08:00:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/ExtractStyleBlocks.php on line 25
[19-Jun-2024 20:43:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/YouTube.php on line 3
[19-Jun-2024 20:50:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/ExtractStyleBlocks.php on line 25
[04-Jul-2024 13:38:51 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/ExtractStyleBlocks.php on line 25
[09-Jul-2024 12:02:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/YouTube.php on line 3
[19-Jul-2024 02:41:02 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/ExtractStyleBlocks.php on line 25
[19-Jul-2024 15:08:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/YouTube.php on line 3
[22-Jul-2024 19:30:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/YouTube.php on line 3
[22-Jul-2024 19:50:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/ExtractStyleBlocks.php on line 25
[24-Jul-2024 02:43:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/YouTube.php on line 3
[29-Jul-2024 20:18:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/YouTube.php on line 3
[04-Aug-2024 19:05:51 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/YouTube.php on line 3
[10-Aug-2024 21:23:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/YouTube.php on line 3
[11-Aug-2024 04:07:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/ExtractStyleBlocks.php on line 25
[16-Aug-2024 02:51:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/YouTube.php on line 3
[25-Aug-2024 07:41:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/ExtractStyleBlocks.php on line 25
[25-Aug-2024 19:27:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/YouTube.php on line 3
[25-Aug-2024 21:25:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/YouTube.php on line 3
[27-Aug-2024 03:40:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/ExtractStyleBlocks.php on line 25
[31-Aug-2024 21:23:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/YouTube.php on line 3
[01-Sep-2024 23:19:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/YouTube.php on line 3
[01-Sep-2024 23:52:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/ExtractStyleBlocks.php on line 25
[02-Sep-2024 18:34:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/ExtractStyleBlocks.php on line 25
[09-Sep-2024 04:11:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/ExtractStyleBlocks.php on line 25
[11-Sep-2024 22:59:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/YouTube.php on line 3
[11-Sep-2024 23:17:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/ExtractStyleBlocks.php on line 25
[13-Sep-2024 06:49:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/YouTube.php on line 3
[13-Sep-2024 06:49:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/YouTube.php on line 3
[13-Sep-2024 07:21:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/ExtractStyleBlocks.php on line 25
[13-Sep-2024 07:21:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/ExtractStyleBlocks.php on line 25
[15-Sep-2024 02:41:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/ExtractStyleBlocks.php on line 25
[17-Sep-2024 08:03:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/ExtractStyleBlocks.php on line 25
[21-Sep-2024 16:46:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/YouTube.php on line 3
[25-Sep-2024 07:27:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/YouTube.php on line 3
[27-Sep-2024 03:18:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/YouTube.php on line 3
[07-Oct-2024 06:28:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/YouTube.php on line 3
[07-Oct-2024 06:47:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/ExtractStyleBlocks.php on line 25
[08-Oct-2024 00:19:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/YouTube.php on line 3
[08-Oct-2024 00:56:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/ExtractStyleBlocks.php on line 25
[12-Oct-2024 12:52:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/ExtractStyleBlocks.php on line 25
[13-Oct-2024 00:20:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/YouTube.php on line 3
[22-Oct-2024 22:51:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/ExtractStyleBlocks.php on line 25
[25-Oct-2024 15:46:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/ExtractStyleBlocks.php on line 25
[28-Oct-2024 17:15:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/YouTube.php on line 3
[29-Oct-2024 12:02:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/YouTube.php on line 3
[31-Oct-2024 14:08:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/YouTube.php on line 3
[31-Oct-2024 14:38:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/ExtractStyleBlocks.php on line 25
[10-Nov-2024 05:09:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/YouTube.php on line 3
[10-Nov-2024 05:09:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Filter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/ExtractStyleBlocks.php on line 25
htmlpurifier/library/HTMLPurifier/Filter/ExtractStyleBlocks.php 0000644 00000032444 14716425661 0020746 0 ustar 00 blocks from input HTML, cleans them up
* using CSSTidy, and then places them in $purifier->context->get('StyleBlocks')
* so they can be used elsewhere in the document.
*
* @note
* See tests/HTMLPurifier/Filter/ExtractStyleBlocksTest.php for
* sample usage.
*
* @note
* This filter can also be used on stylesheets not included in the
* document--something purists would probably prefer. Just directly
* call HTMLPurifier_Filter_ExtractStyleBlocks->cleanCSS()
*/
class HTMLPurifier_Filter_ExtractStyleBlocks extends HTMLPurifier_Filter
{
/**
* @type string
*/
public $name = 'ExtractStyleBlocks';
/**
* @type array
*/
private $_styleMatches = array();
/**
* @type csstidy
*/
private $_tidy;
/**
* @type HTMLPurifier_AttrDef_HTML_ID
*/
private $_id_attrdef;
/**
* @type HTMLPurifier_AttrDef_CSS_Ident
*/
private $_class_attrdef;
/**
* @type HTMLPurifier_AttrDef_Enum
*/
private $_enum_attrdef;
public function __construct()
{
$this->_tidy = new csstidy();
$this->_tidy->set_cfg('lowercase_s', false);
$this->_id_attrdef = new HTMLPurifier_AttrDef_HTML_ID(true);
$this->_class_attrdef = new HTMLPurifier_AttrDef_CSS_Ident();
$this->_enum_attrdef = new HTMLPurifier_AttrDef_Enum(
array(
'first-child',
'link',
'visited',
'active',
'hover',
'focus'
)
);
}
/**
* Save the contents of CSS blocks to style matches
* @param array $matches preg_replace style $matches array
*/
protected function styleCallback($matches)
{
$this->_styleMatches[] = $matches[1];
}
/**
* Removes inline
// we must not grab foo in a font-family prop).
if ($config->get('Filter.ExtractStyleBlocks.Escaping')) {
$css = str_replace(
array('<', '>', '&'),
array('\3C ', '\3E ', '\26 '),
$css
);
}
return $css;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ElementDef.php 0000644 00000016543 14716425661 0015742 0 ustar 00 setup(), this array may also
* contain an array at index 0 that indicates which attribute
* collections to load into the full array. It may also
* contain string indentifiers in lieu of HTMLPurifier_AttrDef,
* see HTMLPurifier_AttrTypes on how they are expanded during
* HTMLPurifier_HTMLDefinition->setup() processing.
*/
public $attr = array();
// XXX: Design note: currently, it's not possible to override
// previously defined AttrTransforms without messing around with
// the final generated config. This is by design; a previous version
// used an associated list of attr_transform, but it was extremely
// easy to accidentally override other attribute transforms by
// forgetting to specify an index (and just using 0.) While we
// could check this by checking the index number and complaining,
// there is a second problem which is that it is not at all easy to
// tell when something is getting overridden. Combine this with a
// codebase where this isn't really being used, and it's perfect for
// nuking.
/**
* List of tags HTMLPurifier_AttrTransform to be done before validation.
* @type array
*/
public $attr_transform_pre = array();
/**
* List of tags HTMLPurifier_AttrTransform to be done after validation.
* @type array
*/
public $attr_transform_post = array();
/**
* HTMLPurifier_ChildDef of this tag.
* @type HTMLPurifier_ChildDef
*/
public $child;
/**
* Abstract string representation of internal ChildDef rules.
* @see HTMLPurifier_ContentSets for how this is parsed and then transformed
* into an HTMLPurifier_ChildDef.
* @warning This is a temporary variable that is not available after
* being processed by HTMLDefinition
* @type string
*/
public $content_model;
/**
* Value of $child->type, used to determine which ChildDef to use,
* used in combination with $content_model.
* @warning This must be lowercase
* @warning This is a temporary variable that is not available after
* being processed by HTMLDefinition
* @type string
*/
public $content_model_type;
/**
* Does the element have a content model (#PCDATA | Inline)*? This
* is important for chameleon ins and del processing in
* HTMLPurifier_ChildDef_Chameleon. Dynamically set: modules don't
* have to worry about this one.
* @type bool
*/
public $descendants_are_inline = false;
/**
* List of the names of required attributes this element has.
* Dynamically populated by HTMLPurifier_HTMLDefinition::getElement()
* @type array
*/
public $required_attr = array();
/**
* Lookup table of tags excluded from all descendants of this tag.
* @type array
* @note SGML permits exclusions for all descendants, but this is
* not possible with DTDs or XML Schemas. W3C has elected to
* use complicated compositions of content_models to simulate
* exclusion for children, but we go the simpler, SGML-style
* route of flat-out exclusions, which correctly apply to
* all descendants and not just children. Note that the XHTML
* Modularization Abstract Modules are blithely unaware of such
* distinctions.
*/
public $excludes = array();
/**
* This tag is explicitly auto-closed by the following tags.
* @type array
*/
public $autoclose = array();
/**
* If a foreign element is found in this element, test if it is
* allowed by this sub-element; if it is, instead of closing the
* current element, place it inside this element.
* @type string
*/
public $wrap;
/**
* Whether or not this is a formatting element affected by the
* "Active Formatting Elements" algorithm.
* @type bool
*/
public $formatting;
/**
* Low-level factory constructor for creating new standalone element defs
*/
public static function create($content_model, $content_model_type, $attr)
{
$def = new HTMLPurifier_ElementDef();
$def->content_model = $content_model;
$def->content_model_type = $content_model_type;
$def->attr = $attr;
return $def;
}
/**
* Merges the values of another element definition into this one.
* Values from the new element def take precedence if a value is
* not mergeable.
* @param HTMLPurifier_ElementDef $def
*/
public function mergeIn($def)
{
// later keys takes precedence
foreach ($def->attr as $k => $v) {
if ($k === 0) {
// merge in the includes
// sorry, no way to override an include
foreach ($v as $v2) {
$this->attr[0][] = $v2;
}
continue;
}
if ($v === false) {
if (isset($this->attr[$k])) {
unset($this->attr[$k]);
}
continue;
}
$this->attr[$k] = $v;
}
$this->_mergeAssocArray($this->excludes, $def->excludes);
$this->attr_transform_pre = array_merge($this->attr_transform_pre, $def->attr_transform_pre);
$this->attr_transform_post = array_merge($this->attr_transform_post, $def->attr_transform_post);
if (!empty($def->content_model)) {
$this->content_model =
str_replace("#SUPER", $this->content_model, $def->content_model);
$this->child = false;
}
if (!empty($def->content_model_type)) {
$this->content_model_type = $def->content_model_type;
$this->child = false;
}
if (!is_null($def->child)) {
$this->child = $def->child;
}
if (!is_null($def->formatting)) {
$this->formatting = $def->formatting;
}
if ($def->descendants_are_inline) {
$this->descendants_are_inline = $def->descendants_are_inline;
}
}
/**
* Merges one array into another, removes values which equal false
* @param $a1 Array by reference that is merged into
* @param $a2 Array that merges into $a1
*/
private function _mergeAssocArray(&$a1, $a2)
{
foreach ($a2 as $k => $v) {
if ($v === false) {
if (isset($a1[$k])) {
unset($a1[$k]);
}
continue;
}
$a1[$k] = $v;
}
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/DefinitionCacheFactory.php 0000644 00000006201 14716425661 0020264 0 ustar 00 array());
/**
* @type array
*/
protected $implementations = array();
/**
* @type HTMLPurifier_DefinitionCache_Decorator[]
*/
protected $decorators = array();
/**
* Initialize default decorators
*/
public function setup()
{
$this->addDecorator('Cleanup');
}
/**
* Retrieves an instance of global definition cache factory.
* @param HTMLPurifier_DefinitionCacheFactory $prototype
* @return HTMLPurifier_DefinitionCacheFactory
*/
public static function instance($prototype = null)
{
static $instance;
if ($prototype !== null) {
$instance = $prototype;
} elseif ($instance === null || $prototype === true) {
$instance = new HTMLPurifier_DefinitionCacheFactory();
$instance->setup();
}
return $instance;
}
/**
* Registers a new definition cache object
* @param string $short Short name of cache object, for reference
* @param string $long Full class name of cache object, for construction
*/
public function register($short, $long)
{
$this->implementations[$short] = $long;
}
/**
* Factory method that creates a cache object based on configuration
* @param string $type Name of definitions handled by cache
* @param HTMLPurifier_Config $config Config instance
* @return mixed
*/
public function create($type, $config)
{
$method = $config->get('Cache.DefinitionImpl');
if ($method === null) {
return new HTMLPurifier_DefinitionCache_Null($type);
}
if (!empty($this->caches[$method][$type])) {
return $this->caches[$method][$type];
}
if (isset($this->implementations[$method]) &&
class_exists($class = $this->implementations[$method], false)) {
$cache = new $class($type);
} else {
if ($method != 'Serializer') {
trigger_error("Unrecognized DefinitionCache $method, using Serializer instead", E_USER_WARNING);
}
$cache = new HTMLPurifier_DefinitionCache_Serializer($type);
}
foreach ($this->decorators as $decorator) {
$new_cache = $decorator->decorate($cache);
// prevent infinite recursion in PHP 4
unset($cache);
$cache = $new_cache;
}
$this->caches[$method][$type] = $cache;
return $this->caches[$method][$type];
}
/**
* Registers a decorator to add to all new cache objects
* @param HTMLPurifier_DefinitionCache_Decorator|string $decorator An instance or the name of a decorator
*/
public function addDecorator($decorator)
{
if (is_string($decorator)) {
$class = "HTMLPurifier_DefinitionCache_Decorator_$decorator";
$decorator = new $class;
}
$this->decorators[$decorator->name] = $decorator;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/AttrTypes.php 0000644 00000007124 14716425661 0015664 0 ustar 00 info['Enum'] = new HTMLPurifier_AttrDef_Enum();
$this->info['Bool'] = new HTMLPurifier_AttrDef_HTML_Bool();
$this->info['CDATA'] = new HTMLPurifier_AttrDef_Text();
$this->info['ID'] = new HTMLPurifier_AttrDef_HTML_ID();
$this->info['Length'] = new HTMLPurifier_AttrDef_HTML_Length();
$this->info['MultiLength'] = new HTMLPurifier_AttrDef_HTML_MultiLength();
$this->info['NMTOKENS'] = new HTMLPurifier_AttrDef_HTML_Nmtokens();
$this->info['Pixels'] = new HTMLPurifier_AttrDef_HTML_Pixels();
$this->info['Text'] = new HTMLPurifier_AttrDef_Text();
$this->info['URI'] = new HTMLPurifier_AttrDef_URI();
$this->info['LanguageCode'] = new HTMLPurifier_AttrDef_Lang();
$this->info['Color'] = new HTMLPurifier_AttrDef_HTML_Color();
$this->info['IAlign'] = self::makeEnum('top,middle,bottom,left,right');
$this->info['LAlign'] = self::makeEnum('top,bottom,left,right');
$this->info['FrameTarget'] = new HTMLPurifier_AttrDef_HTML_FrameTarget();
// unimplemented aliases
$this->info['ContentType'] = new HTMLPurifier_AttrDef_Text();
$this->info['ContentTypes'] = new HTMLPurifier_AttrDef_Text();
$this->info['Charsets'] = new HTMLPurifier_AttrDef_Text();
$this->info['Character'] = new HTMLPurifier_AttrDef_Text();
// "proprietary" types
$this->info['Class'] = new HTMLPurifier_AttrDef_HTML_Class();
// number is really a positive integer (one or more digits)
// FIXME: ^^ not always, see start and value of list items
$this->info['Number'] = new HTMLPurifier_AttrDef_Integer(false, false, true);
}
private static function makeEnum($in)
{
return new HTMLPurifier_AttrDef_Clone(new HTMLPurifier_AttrDef_Enum(explode(',', $in)));
}
/**
* Retrieves a type
* @param string $type String type name
* @return HTMLPurifier_AttrDef Object AttrDef for type
*/
public function get($type)
{
// determine if there is any extra info tacked on
if (strpos($type, '#') !== false) {
list($type, $string) = explode('#', $type, 2);
} else {
$string = '';
}
if (!isset($this->info[$type])) {
trigger_error('Cannot retrieve undefined attribute type ' . $type, E_USER_ERROR);
return;
}
return $this->info[$type]->make($string);
}
/**
* Sets a new implementation for a type
* @param string $type String type name
* @param HTMLPurifier_AttrDef $impl Object AttrDef for type
*/
public function set($type, $impl)
{
$this->info[$type] = $impl;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/HTMLModule/Text.php 0000644 00000006553 14716425661 0016570 0 ustar 00 'Heading | Block | Inline'
);
/**
* @param HTMLPurifier_Config $config
*/
public function setup($config)
{
// Inline Phrasal -------------------------------------------------
$this->addElement('abbr', 'Inline', 'Inline', 'Common');
$this->addElement('acronym', 'Inline', 'Inline', 'Common');
$this->addElement('cite', 'Inline', 'Inline', 'Common');
$this->addElement('dfn', 'Inline', 'Inline', 'Common');
$this->addElement('kbd', 'Inline', 'Inline', 'Common');
$this->addElement('q', 'Inline', 'Inline', 'Common', array('cite' => 'URI'));
$this->addElement('samp', 'Inline', 'Inline', 'Common');
$this->addElement('var', 'Inline', 'Inline', 'Common');
$em = $this->addElement('em', 'Inline', 'Inline', 'Common');
$em->formatting = true;
$strong = $this->addElement('strong', 'Inline', 'Inline', 'Common');
$strong->formatting = true;
$code = $this->addElement('code', 'Inline', 'Inline', 'Common');
$code->formatting = true;
// Inline Structural ----------------------------------------------
$this->addElement('span', 'Inline', 'Inline', 'Common');
$this->addElement('br', 'Inline', 'Empty', 'Core');
// Block Phrasal --------------------------------------------------
$this->addElement('address', 'Block', 'Inline', 'Common');
$this->addElement('blockquote', 'Block', 'Optional: Heading | Block | List', 'Common', array('cite' => 'URI'));
$pre = $this->addElement('pre', 'Block', 'Inline', 'Common');
$pre->excludes = $this->makeLookup(
'img',
'big',
'small',
'object',
'applet',
'font',
'basefont'
);
$this->addElement('h1', 'Heading', 'Inline', 'Common');
$this->addElement('h2', 'Heading', 'Inline', 'Common');
$this->addElement('h3', 'Heading', 'Inline', 'Common');
$this->addElement('h4', 'Heading', 'Inline', 'Common');
$this->addElement('h5', 'Heading', 'Inline', 'Common');
$this->addElement('h6', 'Heading', 'Inline', 'Common');
// Block Structural -----------------------------------------------
$p = $this->addElement('p', 'Block', 'Inline', 'Common');
$p->autoclose = array_flip(
array("address", "blockquote", "center", "dir", "div", "dl", "fieldset", "ol", "p", "ul")
);
$this->addElement('div', 'Block', 'Flow', 'Common');
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/HTMLModule/Proprietary.php 0000644 00000001743 14716425661 0020160 0 ustar 00 addElement(
'marquee',
'Inline',
'Flow',
'Common',
array(
'direction' => 'Enum#left,right,up,down',
'behavior' => 'Enum#alternate',
'width' => 'Length',
'height' => 'Length',
'scrolldelay' => 'Number',
'scrollamount' => 'Number',
'loop' => 'Number',
'bgcolor' => 'Color',
'hspace' => 'Pixels',
'vspace' => 'Pixels',
)
);
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/HTMLModule/Ruby.php 0000644 00000002036 14716425661 0016555 0 ustar 00 addElement(
'ruby',
'Inline',
'Custom: ((rb, (rt | (rp, rt, rp))) | (rbc, rtc, rtc?))',
'Common'
);
$this->addElement('rbc', false, 'Required: rb', 'Common');
$this->addElement('rtc', false, 'Required: rt', 'Common');
$rb = $this->addElement('rb', false, 'Inline', 'Common');
$rb->excludes = array('ruby' => true);
$rt = $this->addElement('rt', false, 'Inline', 'Common', array('rbspan' => 'Number'));
$rt->excludes = array('ruby' => true);
$this->addElement('rp', false, 'Optional: #PCDATA', 'Common');
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/HTMLModule/Forms.php 0000644 00000013167 14716425661 0016731 0 ustar 00 'Form',
'Inline' => 'Formctrl',
);
/**
* @param HTMLPurifier_Config $config
*/
public function setup($config)
{
$form = $this->addElement(
'form',
'Form',
'Required: Heading | List | Block | fieldset',
'Common',
array(
'accept' => 'ContentTypes',
'accept-charset' => 'Charsets',
'action*' => 'URI',
'method' => 'Enum#get,post',
// really ContentType, but these two are the only ones used today
'enctype' => 'Enum#application/x-www-form-urlencoded,multipart/form-data',
)
);
$form->excludes = array('form' => true);
$input = $this->addElement(
'input',
'Formctrl',
'Empty',
'Common',
array(
'accept' => 'ContentTypes',
'accesskey' => 'Character',
'alt' => 'Text',
'checked' => 'Bool#checked',
'disabled' => 'Bool#disabled',
'maxlength' => 'Number',
'name' => 'CDATA',
'readonly' => 'Bool#readonly',
'size' => 'Number',
'src' => 'URI#embedded',
'tabindex' => 'Number',
'type' => 'Enum#text,password,checkbox,button,radio,submit,reset,file,hidden,image',
'value' => 'CDATA',
)
);
$input->attr_transform_post[] = new HTMLPurifier_AttrTransform_Input();
$this->addElement(
'select',
'Formctrl',
'Required: optgroup | option',
'Common',
array(
'disabled' => 'Bool#disabled',
'multiple' => 'Bool#multiple',
'name' => 'CDATA',
'size' => 'Number',
'tabindex' => 'Number',
)
);
$this->addElement(
'option',
false,
'Optional: #PCDATA',
'Common',
array(
'disabled' => 'Bool#disabled',
'label' => 'Text',
'selected' => 'Bool#selected',
'value' => 'CDATA',
)
);
// It's illegal for there to be more than one selected, but not
// be multiple. Also, no selected means undefined behavior. This might
// be difficult to implement; perhaps an injector, or a context variable.
$textarea = $this->addElement(
'textarea',
'Formctrl',
'Optional: #PCDATA',
'Common',
array(
'accesskey' => 'Character',
'cols*' => 'Number',
'disabled' => 'Bool#disabled',
'name' => 'CDATA',
'readonly' => 'Bool#readonly',
'rows*' => 'Number',
'tabindex' => 'Number',
)
);
$textarea->attr_transform_pre[] = new HTMLPurifier_AttrTransform_Textarea();
$button = $this->addElement(
'button',
'Formctrl',
'Optional: #PCDATA | Heading | List | Block | Inline',
'Common',
array(
'accesskey' => 'Character',
'disabled' => 'Bool#disabled',
'name' => 'CDATA',
'tabindex' => 'Number',
'type' => 'Enum#button,submit,reset',
'value' => 'CDATA',
)
);
// For exclusions, ideally we'd specify content sets, not literal elements
$button->excludes = $this->makeLookup(
'form',
'fieldset', // Form
'input',
'select',
'textarea',
'label',
'button', // Formctrl
'a', // as per HTML 4.01 spec, this is omitted by modularization
'isindex',
'iframe' // legacy items
);
// Extra exclusion: img usemap="" is not permitted within this element.
// We'll omit this for now, since we don't have any good way of
// indicating it yet.
// This is HIGHLY user-unfriendly; we need a custom child-def for this
$this->addElement('fieldset', 'Form', 'Custom: (#WS?,legend,(Flow|#PCDATA)*)', 'Common');
$label = $this->addElement(
'label',
'Formctrl',
'Optional: #PCDATA | Inline',
'Common',
array(
'accesskey' => 'Character',
// 'for' => 'IDREF', // IDREF not implemented, cannot allow
)
);
$label->excludes = array('label' => true);
$this->addElement(
'legend',
false,
'Optional: #PCDATA | Inline',
'Common',
array(
'accesskey' => 'Character',
)
);
$this->addElement(
'optgroup',
false,
'Required: option',
'Common',
array(
'disabled' => 'Bool#disabled',
'label*' => 'Text',
)
);
// Don't forget an injector for . This one's a little complex
// because it maps to multiple elements.
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/HTMLModule/Tables.php 0000644 00000004460 14716425661 0017051 0 ustar 00 addElement('caption', false, 'Inline', 'Common');
$this->addElement(
'table',
'Block',
new HTMLPurifier_ChildDef_Table(),
'Common',
array(
'border' => 'Pixels',
'cellpadding' => 'Length',
'cellspacing' => 'Length',
'frame' => 'Enum#void,above,below,hsides,lhs,rhs,vsides,box,border',
'rules' => 'Enum#none,groups,rows,cols,all',
'summary' => 'Text',
'width' => 'Length'
)
);
// common attributes
$cell_align = array(
'align' => 'Enum#left,center,right,justify,char',
'charoff' => 'Length',
'valign' => 'Enum#top,middle,bottom,baseline',
);
$cell_t = array_merge(
array(
'abbr' => 'Text',
'colspan' => 'Number',
'rowspan' => 'Number',
// Apparently, as of HTML5 this attribute only applies
// to 'th' elements.
'scope' => 'Enum#row,col,rowgroup,colgroup',
),
$cell_align
);
$this->addElement('td', false, 'Flow', 'Common', $cell_t);
$this->addElement('th', false, 'Flow', 'Common', $cell_t);
$this->addElement('tr', false, 'Required: td | th', 'Common', $cell_align);
$cell_col = array_merge(
array(
'span' => 'Number',
'width' => 'MultiLength',
),
$cell_align
);
$this->addElement('col', false, 'Empty', 'Common', $cell_col);
$this->addElement('colgroup', false, 'Optional: col', 'Common', $cell_col);
$this->addElement('tbody', false, 'Required: tr', 'Common', $cell_align);
$this->addElement('thead', false, 'Required: tr', 'Common', $cell_align);
$this->addElement('tfoot', false, 'Required: tr', 'Common', $cell_align);
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/HTMLModule/Presentation.php 0000644 00000002607 14716425661 0020313 0 ustar 00 addElement('hr', 'Block', 'Empty', 'Common');
$this->addElement('sub', 'Inline', 'Inline', 'Common');
$this->addElement('sup', 'Inline', 'Inline', 'Common');
$b = $this->addElement('b', 'Inline', 'Inline', 'Common');
$b->formatting = true;
$big = $this->addElement('big', 'Inline', 'Inline', 'Common');
$big->formatting = true;
$i = $this->addElement('i', 'Inline', 'Inline', 'Common');
$i->formatting = true;
$small = $this->addElement('small', 'Inline', 'Inline', 'Common');
$small->formatting = true;
$tt = $this->addElement('tt', 'Inline', 'Inline', 'Common');
$tt->formatting = true;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/HTMLModule/Hypertext.php 0000644 00000001744 14716425661 0017635 0 ustar 00 addElement(
'a',
'Inline',
'Inline',
'Common',
array(
// 'accesskey' => 'Character',
// 'charset' => 'Charset',
'href' => 'URI',
// 'hreflang' => 'LanguageCode',
'rel' => new HTMLPurifier_AttrDef_HTML_LinkTypes('rel'),
'rev' => new HTMLPurifier_AttrDef_HTML_LinkTypes('rev'),
// 'tabindex' => 'Number',
// 'type' => 'ContentType',
)
);
$a->formatting = true;
$a->excludes = array('a' => true);
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/HTMLModule/Scripting.php 0000644 00000004441 14716425661 0017600 0 ustar 00 'script | noscript', 'Inline' => 'script | noscript');
/**
* @type bool
*/
public $safe = false;
/**
* @param HTMLPurifier_Config $config
*/
public function setup($config)
{
// TODO: create custom child-definition for noscript that
// auto-wraps stray #PCDATA in a similar manner to
// blockquote's custom definition (we would use it but
// blockquote's contents are optional while noscript's contents
// are required)
// TODO: convert this to new syntax, main problem is getting
// both content sets working
// In theory, this could be safe, but I don't see any reason to
// allow it.
$this->info['noscript'] = new HTMLPurifier_ElementDef();
$this->info['noscript']->attr = array(0 => array('Common'));
$this->info['noscript']->content_model = 'Heading | List | Block';
$this->info['noscript']->content_model_type = 'required';
$this->info['script'] = new HTMLPurifier_ElementDef();
$this->info['script']->attr = array(
'defer' => new HTMLPurifier_AttrDef_Enum(array('defer')),
'src' => new HTMLPurifier_AttrDef_URI(true),
'type' => new HTMLPurifier_AttrDef_Enum(array('text/javascript'))
);
$this->info['script']->content_model = '#PCDATA';
$this->info['script']->content_model_type = 'optional';
$this->info['script']->attr_transform_pre[] =
$this->info['script']->attr_transform_post[] =
new HTMLPurifier_AttrTransform_ScriptRequired();
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoopener.php 0000644 00000001004 14716425661 0020562 0 ustar 00 addBlankElement('a');
$a->attr_transform_post[] = new HTMLPurifier_AttrTransform_TargetNoopener();
}
}
htmlpurifier/library/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php 0000644 00000000542 14716425661 0022167 0 ustar 00 array(
'lang' => 'LanguageCode',
)
);
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Proprietary.php 0000644 00000001772 14716425661 0021073 0 ustar 00 content_model_type != 'strictblockquote') {
return parent::getChildDef($def);
}
return new HTMLPurifier_ChildDef_StrictBlockquote($def->content_model);
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/error_log; 0000644 00000172567 14716425661 0020065 0 ustar 00 [18-Sep-2023 23:27:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Strict.php on line 3
[20-Sep-2023 05:38:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTMLAndHTML4.php on line 3
[24-Sep-2023 06:28:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Proprietary.php on line 3
[19-Nov-2023 04:08:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Name.php on line 6
[20-Nov-2023 09:50:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Transitional.php on line 3
[20-Nov-2023 23:47:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTML.php on line 3
[28-Nov-2023 11:25:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTMLAndHTML4.php on line 3
[29-Nov-2023 22:46:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Strict.php on line 3
[02-Dec-2023 00:37:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Strict.php on line 3
[02-Dec-2023 00:37:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTML.php on line 3
[02-Dec-2023 00:38:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTMLAndHTML4.php on line 3
[02-Dec-2023 00:38:02 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Name.php on line 6
[02-Dec-2023 00:38:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Transitional.php on line 3
[02-Dec-2023 00:38:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Proprietary.php on line 3
[02-Dec-2023 18:49:02 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTMLAndHTML4.php on line 3
[02-Dec-2023 18:49:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Strict.php on line 3
[02-Dec-2023 18:49:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTML.php on line 3
[02-Dec-2023 18:49:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Proprietary.php on line 3
[02-Dec-2023 18:49:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Name.php on line 6
[02-Dec-2023 18:49:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Transitional.php on line 3
[03-Dec-2023 07:43:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Transitional.php on line 3
[03-Dec-2023 07:43:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Proprietary.php on line 3
[03-Dec-2023 07:43:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTML.php on line 3
[03-Dec-2023 07:43:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Name.php on line 6
[03-Dec-2023 07:43:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Strict.php on line 3
[03-Dec-2023 07:43:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTMLAndHTML4.php on line 3
[05-Dec-2023 06:58:51 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Name.php on line 6
[05-Dec-2023 06:58:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Strict.php on line 3
[05-Dec-2023 06:58:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTML.php on line 3
[05-Dec-2023 06:58:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Transitional.php on line 3
[05-Dec-2023 06:59:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Proprietary.php on line 3
[05-Dec-2023 06:59:02 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTMLAndHTML4.php on line 3
[07-Dec-2023 15:51:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Proprietary.php on line 3
[01-Jan-2024 08:46:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Transitional.php on line 3
[02-Jan-2024 06:32:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Name.php on line 6
[07-Jan-2024 07:30:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTML.php on line 3
[09-Jan-2024 20:19:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTMLAndHTML4.php on line 3
[15-Jan-2024 04:44:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Strict.php on line 3
[15-Jan-2024 06:17:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Proprietary.php on line 3
[28-Mar-2024 08:17:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Transitional.php on line 3
[02-Apr-2024 21:34:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Name.php on line 6
[02-Apr-2024 22:38:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTMLAndHTML4.php on line 3
[03-Apr-2024 03:27:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Transitional.php on line 3
[03-Apr-2024 05:37:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Proprietary.php on line 3
[03-Apr-2024 10:36:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Name.php on line 6
[03-Apr-2024 11:13:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTML.php on line 3
[04-Apr-2024 09:38:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Strict.php on line 3
[08-Apr-2024 18:29:51 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTML.php on line 3
[10-Apr-2024 21:43:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTMLAndHTML4.php on line 3
[13-Apr-2024 00:53:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Proprietary.php on line 3
[13-Apr-2024 11:59:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Strict.php on line 3
[02-May-2024 12:50:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Proprietary.php on line 3
[05-May-2024 02:50:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTML.php on line 3
[05-May-2024 02:50:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Strict.php on line 3
[05-May-2024 02:50:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Name.php on line 6
[05-May-2024 02:51:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Proprietary.php on line 3
[05-May-2024 02:56:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTMLAndHTML4.php on line 3
[05-May-2024 02:56:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Transitional.php on line 3
[05-May-2024 12:45:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTML.php on line 3
[05-May-2024 12:45:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Strict.php on line 3
[05-May-2024 12:45:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Name.php on line 6
[05-May-2024 12:45:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Proprietary.php on line 3
[05-May-2024 12:51:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTMLAndHTML4.php on line 3
[05-May-2024 12:51:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Transitional.php on line 3
[05-May-2024 18:12:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTMLAndHTML4.php on line 3
[05-May-2024 21:30:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTML.php on line 3
[05-May-2024 21:42:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Name.php on line 6
[05-May-2024 21:54:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTML.php on line 3
[05-May-2024 21:54:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Strict.php on line 3
[05-May-2024 21:54:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Name.php on line 6
[05-May-2024 21:55:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Proprietary.php on line 3
[05-May-2024 22:00:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTMLAndHTML4.php on line 3
[05-May-2024 22:00:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Transitional.php on line 3
[05-May-2024 22:48:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Strict.php on line 3
[06-May-2024 04:36:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Proprietary.php on line 3
[06-May-2024 05:03:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Transitional.php on line 3
[13-May-2024 09:30:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Proprietary.php on line 3
[13-May-2024 10:58:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTMLAndHTML4.php on line 3
[13-May-2024 11:23:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Name.php on line 6
[13-May-2024 12:30:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Strict.php on line 3
[13-May-2024 12:34:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTML.php on line 3
[13-May-2024 12:39:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Transitional.php on line 3
[14-May-2024 20:54:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTML.php on line 3
[14-May-2024 20:55:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Strict.php on line 3
[14-May-2024 20:55:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Name.php on line 6
[14-May-2024 20:55:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Proprietary.php on line 3
[14-May-2024 20:59:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTMLAndHTML4.php on line 3
[14-May-2024 20:59:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Transitional.php on line 3
[19-May-2024 03:03:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Proprietary.php on line 3
[19-May-2024 05:20:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Strict.php on line 3
[19-May-2024 05:34:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Name.php on line 6
[19-May-2024 06:06:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTML.php on line 3
[19-May-2024 06:28:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTMLAndHTML4.php on line 3
[19-May-2024 06:52:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Transitional.php on line 3
[25-May-2024 12:22:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Transitional.php on line 3
[26-May-2024 03:45:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Name.php on line 6
[29-May-2024 18:39:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTML.php on line 3
[31-May-2024 20:44:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTMLAndHTML4.php on line 3
[31-May-2024 23:27:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Proprietary.php on line 3
[01-Jun-2024 18:25:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Strict.php on line 3
[14-Jun-2024 11:04:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Proprietary.php on line 3
[14-Jun-2024 11:45:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Strict.php on line 3
[14-Jun-2024 11:54:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTML.php on line 3
[14-Jun-2024 12:28:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Transitional.php on line 3
[14-Jun-2024 12:33:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTMLAndHTML4.php on line 3
[14-Jun-2024 12:58:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Name.php on line 6
[18-Jun-2024 23:06:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTML.php on line 3
[18-Jun-2024 23:06:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Strict.php on line 3
[18-Jun-2024 23:06:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Name.php on line 6
[18-Jun-2024 23:06:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Proprietary.php on line 3
[18-Jun-2024 23:09:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTMLAndHTML4.php on line 3
[18-Jun-2024 23:10:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Transitional.php on line 3
[19-Jun-2024 08:03:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTML.php on line 3
[19-Jun-2024 08:04:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Strict.php on line 3
[19-Jun-2024 08:04:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Name.php on line 6
[19-Jun-2024 08:04:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Proprietary.php on line 3
[19-Jun-2024 08:07:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTMLAndHTML4.php on line 3
[19-Jun-2024 08:07:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Transitional.php on line 3
[19-Jun-2024 20:53:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTML.php on line 3
[19-Jun-2024 20:53:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Strict.php on line 3
[19-Jun-2024 20:53:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Name.php on line 6
[19-Jun-2024 20:53:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Proprietary.php on line 3
[19-Jun-2024 20:57:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTMLAndHTML4.php on line 3
[19-Jun-2024 20:57:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Transitional.php on line 3
[20-Jun-2024 14:08:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Proprietary.php on line 3
[20-Jun-2024 14:21:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Name.php on line 6
[20-Jun-2024 17:03:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Strict.php on line 3
[20-Jun-2024 18:22:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTMLAndHTML4.php on line 3
[21-Jun-2024 00:23:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTMLAndHTML4.php on line 3
[21-Jun-2024 08:53:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTML.php on line 3
[21-Jun-2024 13:02:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Transitional.php on line 3
[28-Jun-2024 04:14:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Strict.php on line 3
[28-Jun-2024 23:10:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Transitional.php on line 3
[29-Jun-2024 22:27:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Proprietary.php on line 3
[02-Jul-2024 09:08:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTML.php on line 3
[04-Jul-2024 07:30:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTML.php on line 3
[05-Jul-2024 03:26:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Strict.php on line 3
[05-Jul-2024 05:52:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Name.php on line 6
[06-Jul-2024 03:10:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Proprietary.php on line 3
[08-Jul-2024 16:38:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTML.php on line 3
[09-Jul-2024 22:28:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTMLAndHTML4.php on line 3
[10-Jul-2024 05:55:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Proprietary.php on line 3
[10-Jul-2024 14:37:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Strict.php on line 3
[11-Jul-2024 03:40:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Strict.php on line 3
[22-Jul-2024 21:00:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTML.php on line 3
[22-Jul-2024 21:00:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Strict.php on line 3
[22-Jul-2024 21:01:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Name.php on line 6
[22-Jul-2024 21:01:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Proprietary.php on line 3
[22-Jul-2024 21:06:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTMLAndHTML4.php on line 3
[22-Jul-2024 21:06:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Transitional.php on line 3
[23-Jul-2024 04:36:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTML.php on line 3
[23-Jul-2024 05:57:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTMLAndHTML4.php on line 3
[25-Jul-2024 23:37:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Transitional.php on line 3
[26-Jul-2024 08:37:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Name.php on line 6
[28-Jul-2024 18:21:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Strict.php on line 3
[29-Jul-2024 00:31:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTML.php on line 3
[29-Jul-2024 02:42:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTMLAndHTML4.php on line 3
[29-Jul-2024 07:37:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Transitional.php on line 3
[29-Jul-2024 09:16:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Proprietary.php on line 3
[29-Jul-2024 13:12:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Name.php on line 6
[29-Jul-2024 13:24:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTML.php on line 3
[29-Jul-2024 16:14:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTMLAndHTML4.php on line 3
[31-Jul-2024 20:01:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Transitional.php on line 3
[04-Aug-2024 22:17:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Transitional.php on line 3
[07-Aug-2024 06:43:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Transitional.php on line 3
[10-Aug-2024 19:21:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Name.php on line 6
[10-Aug-2024 22:09:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTML.php on line 3
[12-Aug-2024 00:37:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Strict.php on line 3
[13-Aug-2024 10:05:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Transitional.php on line 3
[14-Aug-2024 12:23:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Proprietary.php on line 3
[16-Aug-2024 12:22:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTMLAndHTML4.php on line 3
[16-Aug-2024 16:29:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Strict.php on line 3
[18-Aug-2024 05:33:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Strict.php on line 3
[19-Aug-2024 00:06:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTML.php on line 3
[21-Aug-2024 10:54:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Proprietary.php on line 3
[21-Aug-2024 12:29:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Strict.php on line 3
[23-Aug-2024 05:59:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Transitional.php on line 3
[26-Aug-2024 05:09:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Proprietary.php on line 3
[26-Aug-2024 23:14:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Name.php on line 6
[28-Aug-2024 02:51:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Name.php on line 6
[28-Aug-2024 04:13:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Transitional.php on line 3
[29-Aug-2024 13:28:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTMLAndHTML4.php on line 3
[01-Sep-2024 10:59:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Proprietary.php on line 3
[02-Sep-2024 01:01:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTML.php on line 3
[02-Sep-2024 01:01:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Strict.php on line 3
[02-Sep-2024 01:01:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Name.php on line 6
[02-Sep-2024 01:01:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Proprietary.php on line 3
[02-Sep-2024 01:06:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTMLAndHTML4.php on line 3
[02-Sep-2024 01:07:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Transitional.php on line 3
[03-Sep-2024 09:41:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Name.php on line 6
[04-Sep-2024 01:41:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTMLAndHTML4.php on line 3
[04-Sep-2024 12:10:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Strict.php on line 3
[04-Sep-2024 20:44:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Proprietary.php on line 3
[05-Sep-2024 01:09:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTML.php on line 3
[06-Sep-2024 02:15:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Transitional.php on line 3
[06-Sep-2024 03:04:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Name.php on line 6
[07-Sep-2024 11:10:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Name.php on line 6
[10-Sep-2024 08:30:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Transitional.php on line 3
[12-Sep-2024 00:31:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTML.php on line 3
[12-Sep-2024 00:31:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Strict.php on line 3
[12-Sep-2024 00:31:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Name.php on line 6
[12-Sep-2024 00:32:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Proprietary.php on line 3
[12-Sep-2024 00:37:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTMLAndHTML4.php on line 3
[12-Sep-2024 00:37:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Transitional.php on line 3
[13-Sep-2024 07:36:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTML.php on line 3
[13-Sep-2024 07:37:02 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Strict.php on line 3
[13-Sep-2024 07:37:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Name.php on line 6
[13-Sep-2024 07:37:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTML.php on line 3
[13-Sep-2024 07:37:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Strict.php on line 3
[13-Sep-2024 07:37:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Name.php on line 6
[13-Sep-2024 07:40:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Proprietary.php on line 3
[13-Sep-2024 07:40:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Proprietary.php on line 3
[13-Sep-2024 07:53:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTMLAndHTML4.php on line 3
[13-Sep-2024 07:53:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Transitional.php on line 3
[13-Sep-2024 07:53:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTMLAndHTML4.php on line 3
[13-Sep-2024 07:53:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Transitional.php on line 3
[17-Sep-2024 02:02:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Name.php on line 6
[17-Sep-2024 05:21:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTML.php on line 3
[19-Sep-2024 02:24:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Proprietary.php on line 3
[20-Sep-2024 03:34:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Transitional.php on line 3
[20-Sep-2024 16:15:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTMLAndHTML4.php on line 3
[22-Sep-2024 02:14:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTMLAndHTML4.php on line 3
[22-Sep-2024 13:22:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Strict.php on line 3
[29-Sep-2024 08:06:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Name.php on line 6
[01-Oct-2024 14:27:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTMLAndHTML4.php on line 3
[03-Oct-2024 08:30:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Proprietary.php on line 3
[03-Oct-2024 23:01:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Proprietary.php on line 3
[07-Oct-2024 00:30:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTML.php on line 3
[07-Oct-2024 09:08:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Name.php on line 6
[12-Oct-2024 22:36:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Strict.php on line 3
[13-Oct-2024 12:38:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTMLAndHTML4.php on line 3
[13-Oct-2024 13:02:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Name.php on line 6
[13-Oct-2024 18:38:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTML.php on line 3
[13-Oct-2024 20:48:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Proprietary.php on line 3
[14-Oct-2024 02:33:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTMLAndHTML4.php on line 3
[14-Oct-2024 04:23:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Name.php on line 6
[14-Oct-2024 07:40:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Transitional.php on line 3
[14-Oct-2024 09:08:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Transitional.php on line 3
[18-Oct-2024 18:21:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Proprietary.php on line 3
[18-Oct-2024 18:23:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Strict.php on line 3
[18-Oct-2024 18:26:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Transitional.php on line 3
[18-Oct-2024 18:27:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTML.php on line 3
[18-Oct-2024 18:28:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTMLAndHTML4.php on line 3
[18-Oct-2024 18:29:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Name.php on line 6
[24-Oct-2024 14:55:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Name.php on line 6
[28-Oct-2024 08:10:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Proprietary.php on line 3
[29-Oct-2024 18:34:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTML.php on line 3
[31-Oct-2024 02:10:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Strict.php on line 3
[31-Oct-2024 02:10:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTMLAndHTML4.php on line 3
[31-Oct-2024 05:18:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTML.php on line 3
[31-Oct-2024 15:27:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTML.php on line 3
[31-Oct-2024 15:27:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Strict.php on line 3
[31-Oct-2024 15:28:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Name.php on line 6
[31-Oct-2024 15:31:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Proprietary.php on line 3
[31-Oct-2024 15:42:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTMLAndHTML4.php on line 3
[31-Oct-2024 15:42:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Transitional.php on line 3
[01-Nov-2024 11:18:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Name.php on line 6
[02-Nov-2024 09:24:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTMLAndHTML4.php on line 3
[03-Nov-2024 02:50:02 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Transitional.php on line 3
[10-Nov-2024 18:33:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTML.php on line 3
[10-Nov-2024 18:33:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Strict.php on line 3
[10-Nov-2024 18:33:51 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Name.php on line 6
[10-Nov-2024 18:33:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Proprietary.php on line 3
[10-Nov-2024 18:33:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTMLAndHTML4.php on line 3
[10-Nov-2024 18:34:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule_Tidy_XHTMLAndHTML4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Transitional.php on line 3
htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/XHTMLAndHTML4.php 0000644 00000015634 14716425661 0020645 0 ustar 00 'text-align:left;',
'right' => 'text-align:right;',
'top' => 'caption-side:top;',
'bottom' => 'caption-side:bottom;' // not supported by IE
)
);
// @align for img -------------------------------------------------
$r['img@align'] =
new HTMLPurifier_AttrTransform_EnumToCSS(
'align',
array(
'left' => 'float:left;',
'right' => 'float:right;',
'top' => 'vertical-align:top;',
'middle' => 'vertical-align:middle;',
'bottom' => 'vertical-align:baseline;',
)
);
// @align for table -----------------------------------------------
$r['table@align'] =
new HTMLPurifier_AttrTransform_EnumToCSS(
'align',
array(
'left' => 'float:left;',
'center' => 'margin-left:auto;margin-right:auto;',
'right' => 'float:right;'
)
);
// @align for hr -----------------------------------------------
$r['hr@align'] =
new HTMLPurifier_AttrTransform_EnumToCSS(
'align',
array(
// we use both text-align and margin because these work
// for different browsers (IE and Firefox, respectively)
// and the melange makes for a pretty cross-compatible
// solution
'left' => 'margin-left:0;margin-right:auto;text-align:left;',
'center' => 'margin-left:auto;margin-right:auto;text-align:center;',
'right' => 'margin-left:auto;margin-right:0;text-align:right;'
)
);
// @align for h1, h2, h3, h4, h5, h6, p, div ----------------------
// {{{
$align_lookup = array();
$align_values = array('left', 'right', 'center', 'justify');
foreach ($align_values as $v) {
$align_lookup[$v] = "text-align:$v;";
}
// }}}
$r['h1@align'] =
$r['h2@align'] =
$r['h3@align'] =
$r['h4@align'] =
$r['h5@align'] =
$r['h6@align'] =
$r['p@align'] =
$r['div@align'] =
new HTMLPurifier_AttrTransform_EnumToCSS('align', $align_lookup);
// @bgcolor for table, tr, td, th ---------------------------------
$r['table@bgcolor'] =
$r['td@bgcolor'] =
$r['th@bgcolor'] =
new HTMLPurifier_AttrTransform_BgColor();
// @border for img ------------------------------------------------
$r['img@border'] = new HTMLPurifier_AttrTransform_Border();
// @clear for br --------------------------------------------------
$r['br@clear'] =
new HTMLPurifier_AttrTransform_EnumToCSS(
'clear',
array(
'left' => 'clear:left;',
'right' => 'clear:right;',
'all' => 'clear:both;',
'none' => 'clear:none;',
)
);
// @height for td, th ---------------------------------------------
$r['td@height'] =
$r['th@height'] =
new HTMLPurifier_AttrTransform_Length('height');
// @hspace for img ------------------------------------------------
$r['img@hspace'] = new HTMLPurifier_AttrTransform_ImgSpace('hspace');
// @noshade for hr ------------------------------------------------
// this transformation is not precise but often good enough.
// different browsers use different styles to designate noshade
$r['hr@noshade'] =
new HTMLPurifier_AttrTransform_BoolToCSS(
'noshade',
'color:#808080;background-color:#808080;border:0;'
);
// @nowrap for td, th ---------------------------------------------
$r['td@nowrap'] =
$r['th@nowrap'] =
new HTMLPurifier_AttrTransform_BoolToCSS(
'nowrap',
'white-space:nowrap;'
);
// @size for hr --------------------------------------------------
$r['hr@size'] = new HTMLPurifier_AttrTransform_Length('size', 'height');
// @type for li, ol, ul -------------------------------------------
// {{{
$ul_types = array(
'disc' => 'list-style-type:disc;',
'square' => 'list-style-type:square;',
'circle' => 'list-style-type:circle;'
);
$ol_types = array(
'1' => 'list-style-type:decimal;',
'i' => 'list-style-type:lower-roman;',
'I' => 'list-style-type:upper-roman;',
'a' => 'list-style-type:lower-alpha;',
'A' => 'list-style-type:upper-alpha;'
);
$li_types = $ul_types + $ol_types;
// }}}
$r['ul@type'] = new HTMLPurifier_AttrTransform_EnumToCSS('type', $ul_types);
$r['ol@type'] = new HTMLPurifier_AttrTransform_EnumToCSS('type', $ol_types, true);
$r['li@type'] = new HTMLPurifier_AttrTransform_EnumToCSS('type', $li_types, true);
// @vspace for img ------------------------------------------------
$r['img@vspace'] = new HTMLPurifier_AttrTransform_ImgSpace('vspace');
// @width for hr, td, th ------------------------------------------
$r['td@width'] =
$r['th@width'] =
$r['hr@width'] = new HTMLPurifier_AttrTransform_Length('width');
return $r;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Transitional.php 0000644 00000000432 14716425661 0021212 0 ustar 00 get('HTML.MaxImgLength');
$object = $this->addElement(
'object',
'Inline',
'Optional: param | Flow | #PCDATA',
'Common',
array(
// While technically not required by the spec, we're forcing
// it to this value.
'type' => 'Enum#application/x-shockwave-flash',
'width' => 'Pixels#' . $max,
'height' => 'Pixels#' . $max,
'data' => 'URI#embedded',
'codebase' => new HTMLPurifier_AttrDef_Enum(
array(
'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0'
)
),
)
);
$object->attr_transform_post[] = new HTMLPurifier_AttrTransform_SafeObject();
$param = $this->addElement(
'param',
false,
'Empty',
false,
array(
'id' => 'ID',
'name*' => 'Text',
'value' => 'Text'
)
);
$param->attr_transform_post[] = new HTMLPurifier_AttrTransform_SafeParam();
$this->info_injector[] = 'SafeObject';
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/HTMLModule/Edit.php 0000644 00000002632 14716425661 0016523 0 ustar 00 'URI',
// 'datetime' => 'Datetime', // not implemented
);
$this->addElement('del', 'Inline', $contents, 'Common', $attr);
$this->addElement('ins', 'Inline', $contents, 'Common', $attr);
}
// HTML 4.01 specifies that ins/del must not contain block
// elements when used in an inline context, chameleon is
// a complicated workaround to acheive this effect
// Inline context ! Block context (exclamation mark is
// separator, see getChildDef for parsing)
/**
* @type bool
*/
public $defines_child_def = true;
/**
* @param HTMLPurifier_ElementDef $def
* @return HTMLPurifier_ChildDef_Chameleon
*/
public function getChildDef($def)
{
if ($def->content_model_type != 'chameleon') {
return false;
}
$value = explode('!', $def->content_model);
return new HTMLPurifier_ChildDef_Chameleon($value[0], $value[1]);
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoreferrer.php 0000644 00000001016 14716425661 0021111 0 ustar 00 addBlankElement('a');
$a->attr_transform_post[] = new HTMLPurifier_AttrTransform_TargetNoreferrer();
}
}
htmlpurifier/library/HTMLPurifier/HTMLModule/SafeEmbed.php 0000644 00000002111 14716425661 0017441 0 ustar 00 get('HTML.MaxImgLength');
$embed = $this->addElement(
'embed',
'Inline',
'Empty',
'Common',
array(
'src*' => 'URI#embedded',
'type' => 'Enum#application/x-shockwave-flash',
'width' => 'Pixels#' . $max,
'height' => 'Pixels#' . $max,
'allowscriptaccess' => 'Enum#never',
'allownetworking' => 'Enum#internal',
'flashvars' => 'Text',
'wmode' => 'Enum#window,transparent,opaque',
'name' => 'ID',
)
);
$embed->attr_transform_post[] = new HTMLPurifier_AttrTransform_SafeEmbed();
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/HTMLModule/Iframe.php 0000644 00000002231 14716425661 0017034 0 ustar 00 get('HTML.SafeIframe')) {
$this->safe = true;
}
$this->addElement(
'iframe',
'Inline',
'Flow',
'Common',
array(
'src' => 'URI#embedded',
'width' => 'Length',
'height' => 'Length',
'name' => 'ID',
'scrolling' => 'Enum#yes,no,auto',
'frameborder' => 'Enum#0,1',
'longdesc' => 'URI',
'marginheight' => 'Pixels',
'marginwidth' => 'Pixels',
)
);
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/HTMLModule/SafeScripting.php 0000644 00000002137 14716425661 0020377 0 ustar 00 get('HTML.SafeScripting');
$script = $this->addElement(
'script',
'Inline',
'Empty',
null,
array(
// While technically not required by the spec, we're forcing
// it to this value.
'type' => 'Enum#text/javascript',
'src*' => new HTMLPurifier_AttrDef_Enum(array_keys($allowed))
)
);
$script->attr_transform_pre[] =
$script->attr_transform_post[] = new HTMLPurifier_AttrTransform_ScriptRequired();
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/HTMLModule/error_log; 0000644 00001070570 14716425661 0017144 0 ustar 00 [11-Sep-2023 14:23:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeScripting.php on line 7
[12-Sep-2023 09:12:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/List.php on line 6
[14-Sep-2023 09:18:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/CommonAttributes.php on line 3
[14-Sep-2023 19:30:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Object.php on line 8
[17-Sep-2023 16:52:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetBlank.php on line 7
[18-Sep-2023 15:40:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeEmbed.php on line 6
[18-Sep-2023 16:40:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Iframe.php on line 10
[19-Sep-2023 09:27:51 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tables.php on line 6
[19-Sep-2023 17:01:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Bdo.php on line 7
[20-Sep-2023 12:23:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Legacy.php on line 19
[21-Sep-2023 05:02:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Scripting.php on line 16
[21-Sep-2023 06:15:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Edit.php on line 7
[23-Sep-2023 12:22:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/StyleAttribute.php on line 7
[24-Sep-2023 07:53:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy.php on line 8
[24-Sep-2023 21:28:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Image.php on line 8
[25-Sep-2023 03:39:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php on line 3
[26-Sep-2023 00:30:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Nofollow.php on line 7
[26-Sep-2023 16:27:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Name.php on line 3
[29-Sep-2023 10:26:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Presentation.php on line 13
[01-Oct-2023 02:52:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoreferrer.php on line 7
[05-Nov-2023 18:30:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Text.php on line 15
[08-Nov-2023 19:59:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoopener.php on line 7
[16-Nov-2023 01:42:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Ruby.php on line 7
[16-Nov-2023 06:04:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Proprietary.php on line 7
[16-Nov-2023 08:09:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/XMLCommonAttributes.php on line 3
[16-Nov-2023 16:10:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeScripting.php on line 7
[16-Nov-2023 22:36:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Target.php on line 6
[17-Nov-2023 07:22:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/List.php on line 6
[17-Nov-2023 07:24:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeObject.php on line 9
[18-Nov-2023 03:31:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/CommonAttributes.php on line 3
[19-Nov-2023 07:51:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Forms.php on line 6
[20-Nov-2023 07:24:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Object.php on line 8
[21-Nov-2023 08:04:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Hypertext.php on line 6
[27-Nov-2023 06:00:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Scripting.php on line 16
[28-Nov-2023 02:43:02 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/List.php on line 6
[28-Nov-2023 02:43:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Image.php on line 8
[28-Nov-2023 02:43:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Bdo.php on line 7
[28-Nov-2023 02:43:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Edit.php on line 7
[28-Nov-2023 02:43:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Hypertext.php on line 6
[28-Nov-2023 02:43:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Forms.php on line 6
[28-Nov-2023 02:43:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Text.php on line 15
[28-Nov-2023 02:43:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Name.php on line 3
[28-Nov-2023 02:43:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Proprietary.php on line 7
[28-Nov-2023 02:43:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy.php on line 8
[28-Nov-2023 02:43:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetBlank.php on line 7
[28-Nov-2023 02:43:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeEmbed.php on line 6
[28-Nov-2023 02:43:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Scripting.php on line 16
[28-Nov-2023 02:43:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Ruby.php on line 7
[28-Nov-2023 02:43:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Nofollow.php on line 7
[28-Nov-2023 02:43:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Iframe.php on line 10
[28-Nov-2023 02:43:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Object.php on line 8
[28-Nov-2023 02:43:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Legacy.php on line 19
[28-Nov-2023 02:43:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tables.php on line 6
[28-Nov-2023 02:43:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Target.php on line 6
[28-Nov-2023 02:43:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeObject.php on line 9
[28-Nov-2023 02:44:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoreferrer.php on line 7
[28-Nov-2023 02:44:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeScripting.php on line 7
[28-Nov-2023 02:44:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/CommonAttributes.php on line 3
[28-Nov-2023 02:44:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/XMLCommonAttributes.php on line 3
[28-Nov-2023 02:44:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/StyleAttribute.php on line 7
[28-Nov-2023 02:44:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Presentation.php on line 13
[28-Nov-2023 02:44:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php on line 3
[28-Nov-2023 02:44:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoopener.php on line 7
[28-Nov-2023 06:57:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Legacy.php on line 19
[28-Nov-2023 20:13:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Nofollow.php on line 7
[29-Nov-2023 15:59:51 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Hypertext.php on line 6
[29-Nov-2023 15:59:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Bdo.php on line 7
[29-Nov-2023 15:59:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Forms.php on line 6
[29-Nov-2023 15:59:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Edit.php on line 7
[29-Nov-2023 15:59:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Scripting.php on line 16
[29-Nov-2023 15:59:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Name.php on line 3
[29-Nov-2023 16:00:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Proprietary.php on line 7
[29-Nov-2023 16:00:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeEmbed.php on line 6
[29-Nov-2023 16:00:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Image.php on line 8
[29-Nov-2023 16:00:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Ruby.php on line 7
[29-Nov-2023 16:00:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/List.php on line 6
[29-Nov-2023 16:00:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Iframe.php on line 10
[29-Nov-2023 16:00:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Legacy.php on line 19
[29-Nov-2023 16:00:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetBlank.php on line 7
[29-Nov-2023 16:00:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Nofollow.php on line 7
[29-Nov-2023 16:00:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Text.php on line 15
[29-Nov-2023 16:00:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy.php on line 8
[29-Nov-2023 16:00:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Object.php on line 8
[29-Nov-2023 16:00:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tables.php on line 6
[29-Nov-2023 16:00:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeObject.php on line 9
[29-Nov-2023 16:00:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeScripting.php on line 7
[29-Nov-2023 16:00:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/CommonAttributes.php on line 3
[29-Nov-2023 16:00:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoreferrer.php on line 7
[29-Nov-2023 16:01:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php on line 3
[29-Nov-2023 16:01:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/XMLCommonAttributes.php on line 3
[29-Nov-2023 16:01:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Presentation.php on line 13
[29-Nov-2023 16:01:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Target.php on line 6
[29-Nov-2023 16:01:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoopener.php on line 7
[29-Nov-2023 16:01:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/StyleAttribute.php on line 7
[29-Nov-2023 23:14:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Forms.php on line 6
[29-Nov-2023 23:14:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Hypertext.php on line 6
[29-Nov-2023 23:14:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Bdo.php on line 7
[29-Nov-2023 23:14:51 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Image.php on line 8
[29-Nov-2023 23:14:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Edit.php on line 7
[29-Nov-2023 23:14:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Scripting.php on line 16
[29-Nov-2023 23:14:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetBlank.php on line 7
[29-Nov-2023 23:14:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy.php on line 8
[29-Nov-2023 23:15:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Name.php on line 3
[29-Nov-2023 23:15:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Text.php on line 15
[29-Nov-2023 23:15:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/List.php on line 6
[29-Nov-2023 23:15:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeEmbed.php on line 6
[29-Nov-2023 23:15:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Proprietary.php on line 7
[29-Nov-2023 23:15:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Ruby.php on line 7
[29-Nov-2023 23:15:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Legacy.php on line 19
[29-Nov-2023 23:15:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Iframe.php on line 10
[29-Nov-2023 23:15:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Nofollow.php on line 7
[29-Nov-2023 23:15:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Object.php on line 8
[29-Nov-2023 23:15:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tables.php on line 6
[29-Nov-2023 23:15:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Target.php on line 6
[29-Nov-2023 23:15:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeObject.php on line 9
[29-Nov-2023 23:15:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php on line 3
[29-Nov-2023 23:15:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/StyleAttribute.php on line 7
[29-Nov-2023 23:15:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoreferrer.php on line 7
[29-Nov-2023 23:15:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Presentation.php on line 13
[29-Nov-2023 23:15:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeScripting.php on line 7
[29-Nov-2023 23:15:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/XMLCommonAttributes.php on line 3
[29-Nov-2023 23:15:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/CommonAttributes.php on line 3
[29-Nov-2023 23:15:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoopener.php on line 7
[01-Dec-2023 03:20:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Image.php on line 8
[01-Dec-2023 10:38:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tables.php on line 6
[01-Dec-2023 13:15:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeEmbed.php on line 6
[01-Dec-2023 23:19:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Edit.php on line 7
[02-Dec-2023 00:52:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Bdo.php on line 7
[02-Dec-2023 00:52:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Image.php on line 8
[02-Dec-2023 00:52:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Proprietary.php on line 7
[02-Dec-2023 00:52:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Edit.php on line 7
[02-Dec-2023 00:52:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeEmbed.php on line 6
[02-Dec-2023 00:52:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Ruby.php on line 7
[02-Dec-2023 00:52:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Scripting.php on line 16
[02-Dec-2023 00:52:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Name.php on line 3
[02-Dec-2023 00:52:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Hypertext.php on line 6
[02-Dec-2023 00:52:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Forms.php on line 6
[02-Dec-2023 00:52:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetBlank.php on line 7
[02-Dec-2023 00:52:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Iframe.php on line 10
[02-Dec-2023 00:52:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/List.php on line 6
[02-Dec-2023 00:52:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Text.php on line 15
[02-Dec-2023 00:52:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy.php on line 8
[02-Dec-2023 00:52:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Object.php on line 8
[02-Dec-2023 00:52:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php on line 3
[02-Dec-2023 00:52:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/XMLCommonAttributes.php on line 3
[02-Dec-2023 00:52:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeObject.php on line 9
[02-Dec-2023 00:52:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Legacy.php on line 19
[02-Dec-2023 00:52:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tables.php on line 6
[02-Dec-2023 00:52:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Target.php on line 6
[02-Dec-2023 00:52:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoreferrer.php on line 7
[02-Dec-2023 00:52:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/CommonAttributes.php on line 3
[02-Dec-2023 00:52:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Presentation.php on line 13
[02-Dec-2023 00:53:02 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Nofollow.php on line 7
[02-Dec-2023 00:53:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoopener.php on line 7
[02-Dec-2023 00:53:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/StyleAttribute.php on line 7
[02-Dec-2023 00:53:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeScripting.php on line 7
[02-Dec-2023 04:30:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetBlank.php on line 7
[02-Dec-2023 07:29:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/StyleAttribute.php on line 7
[03-Dec-2023 16:21:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Name.php on line 3
[03-Dec-2023 18:36:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tables.php on line 6
[04-Dec-2023 02:45:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Bdo.php on line 7
[04-Dec-2023 03:29:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy.php on line 8
[31-Dec-2023 13:46:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Ruby.php on line 7
[01-Jan-2024 21:01:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Proprietary.php on line 7
[04-Jan-2024 11:08:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Object.php on line 8
[04-Jan-2024 12:22:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Image.php on line 8
[04-Jan-2024 13:55:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeScripting.php on line 7
[05-Jan-2024 13:57:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Nofollow.php on line 7
[05-Jan-2024 17:38:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeEmbed.php on line 6
[05-Jan-2024 18:27:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/StyleAttribute.php on line 7
[07-Jan-2024 07:45:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoopener.php on line 7
[08-Jan-2024 05:24:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php on line 3
[09-Jan-2024 11:13:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Iframe.php on line 10
[09-Jan-2024 12:34:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Hypertext.php on line 6
[09-Jan-2024 12:56:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Presentation.php on line 13
[09-Jan-2024 15:48:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Scripting.php on line 16
[10-Jan-2024 05:50:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeObject.php on line 9
[10-Jan-2024 07:17:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/List.php on line 6
[13-Jan-2024 20:26:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/XMLCommonAttributes.php on line 3
[14-Jan-2024 11:34:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/CommonAttributes.php on line 3
[14-Jan-2024 11:53:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Bdo.php on line 7
[15-Jan-2024 00:31:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoreferrer.php on line 7
[16-Jan-2024 08:34:51 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tables.php on line 6
[17-Jan-2024 21:01:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy.php on line 8
[18-Jan-2024 00:27:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetBlank.php on line 7
[20-Jan-2024 14:31:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Name.php on line 3
[21-Jan-2024 02:32:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Text.php on line 15
[21-Jan-2024 15:27:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Forms.php on line 6
[25-Jan-2024 03:43:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Target.php on line 6
[26-Jan-2024 08:54:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Edit.php on line 7
[27-Jan-2024 19:59:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Legacy.php on line 19
[06-Mar-2024 01:29:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Ruby.php on line 7
[13-Mar-2024 16:32:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tables.php on line 6
[13-Mar-2024 20:55:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Presentation.php on line 13
[13-Mar-2024 21:06:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/XMLCommonAttributes.php on line 3
[14-Mar-2024 10:11:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Edit.php on line 7
[14-Mar-2024 13:35:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Iframe.php on line 10
[15-Mar-2024 05:43:51 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Proprietary.php on line 7
[18-Mar-2024 12:33:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy.php on line 8
[18-Mar-2024 16:19:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Image.php on line 8
[20-Mar-2024 11:58:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Object.php on line 8
[21-Mar-2024 03:50:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/StyleAttribute.php on line 7
[21-Mar-2024 22:17:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeScripting.php on line 7
[22-Mar-2024 03:59:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeEmbed.php on line 6
[22-Mar-2024 17:15:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Nofollow.php on line 7
[26-Mar-2024 23:14:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoopener.php on line 7
[31-Mar-2024 04:08:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Presentation.php on line 13
[01-Apr-2024 04:38:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeObject.php on line 9
[01-Apr-2024 05:15:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Target.php on line 6
[01-Apr-2024 05:19:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoreferrer.php on line 7
[01-Apr-2024 06:30:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Image.php on line 8
[01-Apr-2024 08:00:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Proprietary.php on line 7
[01-Apr-2024 08:45:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Bdo.php on line 7
[01-Apr-2024 08:58:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Ruby.php on line 7
[01-Apr-2024 09:15:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Text.php on line 15
[01-Apr-2024 09:17:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Hypertext.php on line 6
[01-Apr-2024 09:40:51 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoopener.php on line 7
[01-Apr-2024 09:45:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeEmbed.php on line 6
[01-Apr-2024 09:53:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/List.php on line 6
[01-Apr-2024 10:25:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Nofollow.php on line 7
[01-Apr-2024 10:31:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Object.php on line 8
[01-Apr-2024 10:31:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Object.php on line 8
[01-Apr-2024 10:48:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/CommonAttributes.php on line 3
[01-Apr-2024 10:48:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeObject.php on line 9
[01-Apr-2024 11:55:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Name.php on line 3
[01-Apr-2024 12:19:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php on line 3
[01-Apr-2024 13:24:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Forms.php on line 6
[01-Apr-2024 19:31:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Hypertext.php on line 6
[02-Apr-2024 02:28:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php on line 3
[02-Apr-2024 10:02:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Scripting.php on line 16
[03-Apr-2024 03:18:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Iframe.php on line 10
[04-Apr-2024 17:48:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Legacy.php on line 19
[04-Apr-2024 23:24:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Scripting.php on line 16
[05-Apr-2024 01:52:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/List.php on line 6
[05-Apr-2024 20:15:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/XMLCommonAttributes.php on line 3
[06-Apr-2024 11:24:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Bdo.php on line 7
[07-Apr-2024 09:10:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tables.php on line 6
[07-Apr-2024 12:39:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/StyleAttribute.php on line 7
[07-Apr-2024 22:03:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoreferrer.php on line 7
[08-Apr-2024 13:10:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tables.php on line 6
[10-Apr-2024 10:44:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Name.php on line 3
[11-Apr-2024 05:34:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/CommonAttributes.php on line 3
[11-Apr-2024 12:22:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy.php on line 8
[12-Apr-2024 04:12:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Forms.php on line 6
[13-Apr-2024 08:36:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetBlank.php on line 7
[13-Apr-2024 21:41:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Text.php on line 15
[15-Apr-2024 04:07:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Target.php on line 6
[15-Apr-2024 14:53:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Edit.php on line 7
[17-Apr-2024 12:33:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/StyleAttribute.php on line 7
[17-Apr-2024 20:07:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Legacy.php on line 19
[24-Apr-2024 11:39:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Proprietary.php on line 7
[03-May-2024 01:09:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Text.php on line 15
[03-May-2024 01:42:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Proprietary.php on line 7
[03-May-2024 02:11:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeScripting.php on line 7
[03-May-2024 04:38:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/XMLCommonAttributes.php on line 3
[03-May-2024 05:27:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Ruby.php on line 7
[03-May-2024 05:52:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Scripting.php on line 16
[03-May-2024 06:13:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php on line 3
[03-May-2024 06:45:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Presentation.php on line 13
[03-May-2024 07:11:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Legacy.php on line 19
[03-May-2024 07:18:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetBlank.php on line 7
[03-May-2024 07:45:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Edit.php on line 7
[03-May-2024 08:07:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Hypertext.php on line 6
[03-May-2024 08:14:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Iframe.php on line 10
[03-May-2024 08:34:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Image.php on line 8
[03-May-2024 09:00:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Forms.php on line 6
[03-May-2024 10:12:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoreferrer.php on line 7
[03-May-2024 10:17:51 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/CommonAttributes.php on line 3
[03-May-2024 10:29:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Nofollow.php on line 7
[03-May-2024 10:32:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Target.php on line 6
[03-May-2024 12:04:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy.php on line 8
[03-May-2024 12:51:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeEmbed.php on line 6
[03-May-2024 14:10:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeObject.php on line 9
[03-May-2024 15:02:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tables.php on line 6
[03-May-2024 15:37:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Object.php on line 8
[03-May-2024 16:43:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/StyleAttribute.php on line 7
[03-May-2024 18:36:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/List.php on line 6
[03-May-2024 18:58:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Name.php on line 3
[03-May-2024 19:34:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoopener.php on line 7
[03-May-2024 20:13:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Bdo.php on line 7
[05-May-2024 01:05:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy.php on line 8
[05-May-2024 01:05:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Text.php on line 15
[05-May-2024 01:05:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetBlank.php on line 7
[05-May-2024 01:05:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Scripting.php on line 16
[05-May-2024 01:05:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeEmbed.php on line 6
[05-May-2024 01:05:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Ruby.php on line 7
[05-May-2024 01:05:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Proprietary.php on line 7
[05-May-2024 01:06:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Name.php on line 3
[05-May-2024 01:06:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/List.php on line 6
[05-May-2024 01:06:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Image.php on line 8
[05-May-2024 01:06:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Hypertext.php on line 6
[05-May-2024 01:06:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Forms.php on line 6
[05-May-2024 01:06:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Edit.php on line 7
[05-May-2024 01:06:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Bdo.php on line 7
[05-May-2024 01:30:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Target.php on line 6
[05-May-2024 01:30:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tables.php on line 6
[05-May-2024 01:30:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeObject.php on line 9
[05-May-2024 01:30:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Object.php on line 8
[05-May-2024 01:30:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Nofollow.php on line 7
[05-May-2024 01:30:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Legacy.php on line 19
[05-May-2024 01:30:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Iframe.php on line 10
[05-May-2024 01:38:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoreferrer.php on line 7
[05-May-2024 01:38:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/XMLCommonAttributes.php on line 3
[05-May-2024 01:38:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Presentation.php on line 13
[05-May-2024 01:38:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php on line 3
[05-May-2024 01:38:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/CommonAttributes.php on line 3
[05-May-2024 01:41:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoopener.php on line 7
[05-May-2024 01:41:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/StyleAttribute.php on line 7
[05-May-2024 01:41:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeScripting.php on line 7
[05-May-2024 11:01:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy.php on line 8
[05-May-2024 11:01:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Text.php on line 15
[05-May-2024 11:01:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetBlank.php on line 7
[05-May-2024 11:01:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Scripting.php on line 16
[05-May-2024 11:01:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeEmbed.php on line 6
[05-May-2024 11:01:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Ruby.php on line 7
[05-May-2024 11:01:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Proprietary.php on line 7
[05-May-2024 11:01:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Name.php on line 3
[05-May-2024 11:01:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/List.php on line 6
[05-May-2024 11:01:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Image.php on line 8
[05-May-2024 11:01:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Hypertext.php on line 6
[05-May-2024 11:01:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Forms.php on line 6
[05-May-2024 11:01:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Edit.php on line 7
[05-May-2024 11:01:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Bdo.php on line 7
[05-May-2024 11:25:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Target.php on line 6
[05-May-2024 11:25:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tables.php on line 6
[05-May-2024 11:25:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeObject.php on line 9
[05-May-2024 11:25:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Object.php on line 8
[05-May-2024 11:25:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Nofollow.php on line 7
[05-May-2024 11:25:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Legacy.php on line 19
[05-May-2024 11:25:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Iframe.php on line 10
[05-May-2024 11:34:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/XMLCommonAttributes.php on line 3
[05-May-2024 11:34:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoreferrer.php on line 7
[05-May-2024 11:34:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Presentation.php on line 13
[05-May-2024 11:34:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php on line 3
[05-May-2024 11:34:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/CommonAttributes.php on line 3
[05-May-2024 11:37:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoopener.php on line 7
[05-May-2024 11:37:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/StyleAttribute.php on line 7
[05-May-2024 11:37:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeScripting.php on line 7
[05-May-2024 20:26:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy.php on line 8
[05-May-2024 20:26:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Text.php on line 15
[05-May-2024 20:26:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetBlank.php on line 7
[05-May-2024 20:26:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Scripting.php on line 16
[05-May-2024 20:26:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeEmbed.php on line 6
[05-May-2024 20:27:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Ruby.php on line 7
[05-May-2024 20:27:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Proprietary.php on line 7
[05-May-2024 20:27:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Name.php on line 3
[05-May-2024 20:27:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/List.php on line 6
[05-May-2024 20:27:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Image.php on line 8
[05-May-2024 20:27:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Hypertext.php on line 6
[05-May-2024 20:27:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Forms.php on line 6
[05-May-2024 20:27:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Edit.php on line 7
[05-May-2024 20:27:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Bdo.php on line 7
[05-May-2024 20:50:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Target.php on line 6
[05-May-2024 20:50:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tables.php on line 6
[05-May-2024 20:50:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeObject.php on line 9
[05-May-2024 20:50:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Object.php on line 8
[05-May-2024 20:50:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Nofollow.php on line 7
[05-May-2024 20:50:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Legacy.php on line 19
[05-May-2024 20:50:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Iframe.php on line 10
[05-May-2024 20:58:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/XMLCommonAttributes.php on line 3
[05-May-2024 20:58:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoreferrer.php on line 7
[05-May-2024 20:58:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Presentation.php on line 13
[05-May-2024 20:59:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php on line 3
[05-May-2024 20:59:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/CommonAttributes.php on line 3
[05-May-2024 21:01:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoopener.php on line 7
[05-May-2024 21:01:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/StyleAttribute.php on line 7
[05-May-2024 21:02:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeScripting.php on line 7
[11-May-2024 01:54:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tables.php on line 6
[11-May-2024 20:55:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Ruby.php on line 7
[12-May-2024 06:17:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeScripting.php on line 7
[13-May-2024 09:42:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Proprietary.php on line 7
[13-May-2024 09:59:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Bdo.php on line 7
[13-May-2024 10:13:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Legacy.php on line 19
[13-May-2024 10:15:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Ruby.php on line 7
[13-May-2024 10:25:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Text.php on line 15
[13-May-2024 10:32:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Target.php on line 6
[13-May-2024 10:34:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy.php on line 8
[13-May-2024 10:35:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoreferrer.php on line 7
[13-May-2024 10:45:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/List.php on line 6
[13-May-2024 11:11:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Nofollow.php on line 7
[13-May-2024 11:12:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetBlank.php on line 7
[13-May-2024 11:25:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php on line 3
[13-May-2024 11:29:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/StyleAttribute.php on line 7
[13-May-2024 11:30:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Image.php on line 8
[13-May-2024 12:31:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Hypertext.php on line 6
[13-May-2024 12:33:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Iframe.php on line 10
[13-May-2024 12:35:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeEmbed.php on line 6
[13-May-2024 12:36:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Object.php on line 8
[13-May-2024 12:37:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeObject.php on line 9
[13-May-2024 12:38:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Presentation.php on line 13
[13-May-2024 12:44:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoopener.php on line 7
[13-May-2024 12:45:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Name.php on line 3
[13-May-2024 12:51:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/CommonAttributes.php on line 3
[13-May-2024 12:52:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/XMLCommonAttributes.php on line 3
[13-May-2024 12:54:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Forms.php on line 6
[13-May-2024 12:57:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Scripting.php on line 16
[14-May-2024 20:09:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy.php on line 8
[14-May-2024 20:09:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Text.php on line 15
[14-May-2024 20:09:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetBlank.php on line 7
[14-May-2024 20:09:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Scripting.php on line 16
[14-May-2024 20:10:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeEmbed.php on line 6
[14-May-2024 20:10:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Ruby.php on line 7
[14-May-2024 20:10:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Proprietary.php on line 7
[14-May-2024 20:10:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Name.php on line 3
[14-May-2024 20:10:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/List.php on line 6
[14-May-2024 20:10:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Image.php on line 8
[14-May-2024 20:10:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Hypertext.php on line 6
[14-May-2024 20:10:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Forms.php on line 6
[14-May-2024 20:10:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Edit.php on line 7
[14-May-2024 20:10:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Bdo.php on line 7
[14-May-2024 20:17:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Target.php on line 6
[14-May-2024 20:17:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tables.php on line 6
[14-May-2024 20:18:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeObject.php on line 9
[14-May-2024 20:18:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Object.php on line 8
[14-May-2024 20:18:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Nofollow.php on line 7
[14-May-2024 20:18:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Legacy.php on line 19
[14-May-2024 20:18:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Iframe.php on line 10
[14-May-2024 20:20:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/XMLCommonAttributes.php on line 3
[14-May-2024 20:20:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoreferrer.php on line 7
[14-May-2024 20:20:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Presentation.php on line 13
[14-May-2024 20:20:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php on line 3
[14-May-2024 20:20:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/CommonAttributes.php on line 3
[14-May-2024 20:22:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoopener.php on line 7
[14-May-2024 20:22:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/StyleAttribute.php on line 7
[14-May-2024 20:22:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeScripting.php on line 7
[15-May-2024 15:53:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Proprietary.php on line 7
[17-May-2024 01:48:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Image.php on line 8
[17-May-2024 02:16:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tables.php on line 6
[17-May-2024 23:18:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/StyleAttribute.php on line 7
[18-May-2024 14:59:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeScripting.php on line 7
[18-May-2024 18:12:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Object.php on line 8
[18-May-2024 18:59:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoopener.php on line 7
[18-May-2024 19:27:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Bdo.php on line 7
[18-May-2024 19:43:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Ruby.php on line 7
[18-May-2024 19:44:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Text.php on line 15
[18-May-2024 19:50:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy.php on line 8
[18-May-2024 19:53:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/List.php on line 6
[18-May-2024 21:57:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Name.php on line 3
[19-May-2024 04:03:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Proprietary.php on line 7
[19-May-2024 04:11:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Legacy.php on line 19
[19-May-2024 04:56:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Hypertext.php on line 6
[19-May-2024 04:59:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Iframe.php on line 10
[19-May-2024 05:05:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Target.php on line 6
[19-May-2024 05:16:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeEmbed.php on line 6
[19-May-2024 06:00:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Nofollow.php on line 7
[19-May-2024 06:22:02 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Object.php on line 8
[19-May-2024 07:00:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoreferrer.php on line 7
[19-May-2024 07:01:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoopener.php on line 7
[19-May-2024 07:14:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Image.php on line 8
[19-May-2024 07:51:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeObject.php on line 9
[19-May-2024 07:55:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetBlank.php on line 7
[19-May-2024 08:02:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Presentation.php on line 13
[19-May-2024 08:03:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Forms.php on line 6
[19-May-2024 08:25:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/CommonAttributes.php on line 3
[19-May-2024 08:28:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/XMLCommonAttributes.php on line 3
[19-May-2024 09:34:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php on line 3
[19-May-2024 10:04:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/StyleAttribute.php on line 7
[19-May-2024 10:34:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Scripting.php on line 16
[20-May-2024 22:31:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeEmbed.php on line 6
[20-May-2024 23:09:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/XMLCommonAttributes.php on line 3
[20-May-2024 23:29:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/List.php on line 6
[21-May-2024 01:17:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Nofollow.php on line 7
[23-May-2024 09:32:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Hypertext.php on line 6
[24-May-2024 02:11:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeObject.php on line 9
[24-May-2024 05:40:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Presentation.php on line 13
[24-May-2024 07:10:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Iframe.php on line 10
[24-May-2024 08:48:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Scripting.php on line 16
[25-May-2024 17:02:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Edit.php on line 7
[25-May-2024 20:57:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php on line 3
[28-May-2024 03:28:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Bdo.php on line 7
[28-May-2024 22:43:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/List.php on line 6
[30-May-2024 02:34:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Iframe.php on line 10
[30-May-2024 07:32:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/CommonAttributes.php on line 3
[30-May-2024 10:02:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tables.php on line 6
[30-May-2024 12:16:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoreferrer.php on line 7
[30-May-2024 17:44:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Name.php on line 3
[31-May-2024 04:15:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Text.php on line 15
[31-May-2024 11:34:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Forms.php on line 6
[31-May-2024 16:50:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetBlank.php on line 7
[31-May-2024 22:00:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Target.php on line 6
[01-Jun-2024 08:31:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy.php on line 8
[01-Jun-2024 09:49:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Scripting.php on line 16
[01-Jun-2024 12:29:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Legacy.php on line 19
[13-Jun-2024 07:08:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Edit.php on line 7
[14-Jun-2024 06:32:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/List.php on line 6
[14-Jun-2024 10:24:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Bdo.php on line 7
[14-Jun-2024 10:41:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Proprietary.php on line 7
[14-Jun-2024 11:02:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Legacy.php on line 19
[14-Jun-2024 11:04:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Ruby.php on line 7
[14-Jun-2024 11:08:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Text.php on line 15
[14-Jun-2024 11:08:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Hypertext.php on line 6
[14-Jun-2024 11:09:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Iframe.php on line 10
[14-Jun-2024 11:11:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Target.php on line 6
[14-Jun-2024 11:15:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy.php on line 8
[14-Jun-2024 11:16:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoreferrer.php on line 7
[14-Jun-2024 11:19:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoopener.php on line 7
[14-Jun-2024 11:19:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeEmbed.php on line 6
[14-Jun-2024 11:20:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/List.php on line 6
[14-Jun-2024 11:22:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tables.php on line 6
[14-Jun-2024 11:24:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Nofollow.php on line 7
[14-Jun-2024 11:24:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Object.php on line 8
[14-Jun-2024 11:30:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/CommonAttributes.php on line 3
[14-Jun-2024 11:30:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeObject.php on line 9
[14-Jun-2024 11:32:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetBlank.php on line 7
[14-Jun-2024 11:36:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Presentation.php on line 13
[14-Jun-2024 11:47:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Name.php on line 3
[14-Jun-2024 11:55:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/StyleAttribute.php on line 7
[14-Jun-2024 12:04:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Image.php on line 8
[14-Jun-2024 12:14:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/XMLCommonAttributes.php on line 3
[14-Jun-2024 12:24:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Forms.php on line 6
[14-Jun-2024 12:59:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Scripting.php on line 16
[14-Jun-2024 15:15:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php on line 3
[14-Jun-2024 23:11:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/XMLCommonAttributes.php on line 3
[15-Jun-2024 00:23:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeScripting.php on line 7
[15-Jun-2024 01:14:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoopener.php on line 7
[15-Jun-2024 05:38:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/StyleAttribute.php on line 7
[15-Jun-2024 11:06:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeEmbed.php on line 6
[15-Jun-2024 17:48:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Name.php on line 3
[15-Jun-2024 18:01:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Ruby.php on line 7
[15-Jun-2024 19:55:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Iframe.php on line 10
[15-Jun-2024 20:45:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php on line 3
[15-Jun-2024 22:48:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Image.php on line 8
[16-Jun-2024 07:26:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Nofollow.php on line 7
[18-Jun-2024 00:39:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Proprietary.php on line 7
[18-Jun-2024 02:53:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Forms.php on line 6
[18-Jun-2024 08:34:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Presentation.php on line 13
[18-Jun-2024 10:18:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Hypertext.php on line 6
[18-Jun-2024 11:22:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy.php on line 8
[18-Jun-2024 12:01:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Object.php on line 8
[18-Jun-2024 12:30:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoreferrer.php on line 7
[18-Jun-2024 13:34:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Text.php on line 15
[18-Jun-2024 15:09:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Scripting.php on line 16
[18-Jun-2024 17:22:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Legacy.php on line 19
[18-Jun-2024 18:03:02 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tables.php on line 6
[18-Jun-2024 18:54:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Bdo.php on line 7
[18-Jun-2024 21:08:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetBlank.php on line 7
[18-Jun-2024 22:52:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy.php on line 8
[18-Jun-2024 22:53:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Text.php on line 15
[18-Jun-2024 22:53:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetBlank.php on line 7
[18-Jun-2024 22:53:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Scripting.php on line 16
[18-Jun-2024 22:53:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeEmbed.php on line 6
[18-Jun-2024 22:53:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Ruby.php on line 7
[18-Jun-2024 22:53:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Proprietary.php on line 7
[18-Jun-2024 22:53:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Name.php on line 3
[18-Jun-2024 22:53:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/List.php on line 6
[18-Jun-2024 22:53:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Image.php on line 8
[18-Jun-2024 22:53:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Hypertext.php on line 6
[18-Jun-2024 22:53:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Forms.php on line 6
[18-Jun-2024 22:53:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Edit.php on line 7
[18-Jun-2024 22:53:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Bdo.php on line 7
[18-Jun-2024 22:59:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Target.php on line 6
[18-Jun-2024 22:59:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tables.php on line 6
[18-Jun-2024 22:59:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeObject.php on line 9
[18-Jun-2024 22:59:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Object.php on line 8
[18-Jun-2024 22:59:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Nofollow.php on line 7
[18-Jun-2024 22:59:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Legacy.php on line 19
[18-Jun-2024 22:59:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Iframe.php on line 10
[18-Jun-2024 23:01:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/XMLCommonAttributes.php on line 3
[18-Jun-2024 23:01:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoreferrer.php on line 7
[18-Jun-2024 23:01:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Presentation.php on line 13
[18-Jun-2024 23:01:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php on line 3
[18-Jun-2024 23:01:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/CommonAttributes.php on line 3
[18-Jun-2024 23:02:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoopener.php on line 7
[18-Jun-2024 23:02:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/StyleAttribute.php on line 7
[18-Jun-2024 23:02:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeScripting.php on line 7
[19-Jun-2024 07:50:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy.php on line 8
[19-Jun-2024 07:50:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Text.php on line 15
[19-Jun-2024 07:50:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetBlank.php on line 7
[19-Jun-2024 07:51:02 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Scripting.php on line 16
[19-Jun-2024 07:51:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeEmbed.php on line 6
[19-Jun-2024 07:51:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Ruby.php on line 7
[19-Jun-2024 07:51:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Proprietary.php on line 7
[19-Jun-2024 07:51:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Name.php on line 3
[19-Jun-2024 07:51:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/List.php on line 6
[19-Jun-2024 07:51:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Image.php on line 8
[19-Jun-2024 07:51:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Hypertext.php on line 6
[19-Jun-2024 07:51:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Forms.php on line 6
[19-Jun-2024 07:51:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Edit.php on line 7
[19-Jun-2024 07:51:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Bdo.php on line 7
[19-Jun-2024 07:57:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Target.php on line 6
[19-Jun-2024 07:57:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tables.php on line 6
[19-Jun-2024 07:57:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeObject.php on line 9
[19-Jun-2024 07:57:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Object.php on line 8
[19-Jun-2024 07:57:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Nofollow.php on line 7
[19-Jun-2024 07:57:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Legacy.php on line 19
[19-Jun-2024 07:57:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Iframe.php on line 10
[19-Jun-2024 07:59:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/XMLCommonAttributes.php on line 3
[19-Jun-2024 07:59:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoreferrer.php on line 7
[19-Jun-2024 07:59:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Presentation.php on line 13
[19-Jun-2024 07:59:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php on line 3
[19-Jun-2024 07:59:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/CommonAttributes.php on line 3
[19-Jun-2024 08:00:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoopener.php on line 7
[19-Jun-2024 08:00:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/StyleAttribute.php on line 7
[19-Jun-2024 08:00:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeScripting.php on line 7
[19-Jun-2024 19:41:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Target.php on line 6
[19-Jun-2024 20:40:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy.php on line 8
[19-Jun-2024 20:40:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Text.php on line 15
[19-Jun-2024 20:40:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetBlank.php on line 7
[19-Jun-2024 20:40:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Scripting.php on line 16
[19-Jun-2024 20:40:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeEmbed.php on line 6
[19-Jun-2024 20:40:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Ruby.php on line 7
[19-Jun-2024 20:40:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Proprietary.php on line 7
[19-Jun-2024 20:40:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Name.php on line 3
[19-Jun-2024 20:40:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/List.php on line 6
[19-Jun-2024 20:40:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Image.php on line 8
[19-Jun-2024 20:40:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Hypertext.php on line 6
[19-Jun-2024 20:40:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Forms.php on line 6
[19-Jun-2024 20:40:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Edit.php on line 7
[19-Jun-2024 20:41:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Bdo.php on line 7
[19-Jun-2024 20:46:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Target.php on line 6
[19-Jun-2024 20:46:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tables.php on line 6
[19-Jun-2024 20:46:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeObject.php on line 9
[19-Jun-2024 20:46:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Object.php on line 8
[19-Jun-2024 20:46:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Nofollow.php on line 7
[19-Jun-2024 20:46:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Legacy.php on line 19
[19-Jun-2024 20:46:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Iframe.php on line 10
[19-Jun-2024 20:48:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/XMLCommonAttributes.php on line 3
[19-Jun-2024 20:48:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoreferrer.php on line 7
[19-Jun-2024 20:48:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Presentation.php on line 13
[19-Jun-2024 20:48:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php on line 3
[19-Jun-2024 20:48:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/CommonAttributes.php on line 3
[19-Jun-2024 20:49:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoopener.php on line 7
[19-Jun-2024 20:49:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/StyleAttribute.php on line 7
[19-Jun-2024 20:49:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeScripting.php on line 7
[20-Jun-2024 02:09:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Object.php on line 8
[20-Jun-2024 15:40:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeObject.php on line 9
[20-Jun-2024 17:57:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/CommonAttributes.php on line 3
[21-Jun-2024 16:48:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Ruby.php on line 7
[27-Jun-2024 05:03:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Image.php on line 8
[27-Jun-2024 07:41:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Proprietary.php on line 7
[27-Jun-2024 11:06:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoopener.php on line 7
[27-Jun-2024 12:05:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Name.php on line 3
[27-Jun-2024 19:09:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Object.php on line 8
[27-Jun-2024 23:36:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeEmbed.php on line 6
[28-Jun-2024 00:50:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/StyleAttribute.php on line 7
[28-Jun-2024 01:54:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeEmbed.php on line 6
[28-Jun-2024 02:21:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Presentation.php on line 13
[28-Jun-2024 02:56:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy.php on line 8
[28-Jun-2024 03:44:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeObject.php on line 9
[28-Jun-2024 04:35:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Ruby.php on line 7
[28-Jun-2024 04:50:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Presentation.php on line 13
[28-Jun-2024 05:38:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/StyleAttribute.php on line 7
[28-Jun-2024 11:06:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/List.php on line 6
[28-Jun-2024 15:23:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeScripting.php on line 7
[28-Jun-2024 18:20:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Scripting.php on line 16
[28-Jun-2024 21:35:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/XMLCommonAttributes.php on line 3
[29-Jun-2024 00:57:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Hypertext.php on line 6
[29-Jun-2024 02:40:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Nofollow.php on line 7
[29-Jun-2024 02:55:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Iframe.php on line 10
[29-Jun-2024 15:12:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Edit.php on line 7
[29-Jun-2024 18:35:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php on line 3
[29-Jun-2024 22:15:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Bdo.php on line 7
[29-Jun-2024 23:10:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Proprietary.php on line 7
[29-Jun-2024 23:58:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetBlank.php on line 7
[30-Jun-2024 00:04:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeObject.php on line 9
[30-Jun-2024 00:22:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/CommonAttributes.php on line 3
[30-Jun-2024 02:08:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoopener.php on line 7
[30-Jun-2024 03:10:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Target.php on line 6
[30-Jun-2024 03:11:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Nofollow.php on line 7
[30-Jun-2024 04:07:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoreferrer.php on line 7
[30-Jun-2024 04:33:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Scripting.php on line 16
[02-Jul-2024 09:19:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Object.php on line 8
[02-Jul-2024 09:34:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/List.php on line 6
[02-Jul-2024 09:36:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Text.php on line 15
[02-Jul-2024 09:42:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Edit.php on line 7
[02-Jul-2024 10:34:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeScripting.php on line 7
[02-Jul-2024 11:52:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php on line 3
[03-Jul-2024 17:00:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Bdo.php on line 7
[03-Jul-2024 21:08:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tables.php on line 6
[03-Jul-2024 21:50:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoreferrer.php on line 7
[04-Jul-2024 13:04:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/CommonAttributes.php on line 3
[04-Jul-2024 18:44:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Name.php on line 3
[04-Jul-2024 19:48:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeEmbed.php on line 6
[05-Jul-2024 00:59:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy.php on line 8
[05-Jul-2024 02:30:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeObject.php on line 9
[05-Jul-2024 03:54:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Ruby.php on line 7
[05-Jul-2024 04:08:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Presentation.php on line 13
[05-Jul-2024 04:42:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/StyleAttribute.php on line 7
[06-Jul-2024 03:05:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Bdo.php on line 7
[06-Jul-2024 04:14:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Proprietary.php on line 7
[06-Jul-2024 05:24:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetBlank.php on line 7
[06-Jul-2024 06:50:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/CommonAttributes.php on line 3
[06-Jul-2024 09:13:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoopener.php on line 7
[06-Jul-2024 09:40:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Target.php on line 6
[06-Jul-2024 09:40:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Nofollow.php on line 7
[06-Jul-2024 10:40:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoreferrer.php on line 7
[06-Jul-2024 11:46:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Scripting.php on line 16
[08-Jul-2024 17:20:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Object.php on line 8
[08-Jul-2024 21:03:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy.php on line 8
[08-Jul-2024 23:36:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetBlank.php on line 7
[09-Jul-2024 03:06:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/List.php on line 6
[09-Jul-2024 08:17:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Forms.php on line 6
[09-Jul-2024 08:43:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeScripting.php on line 7
[09-Jul-2024 10:11:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php on line 3
[09-Jul-2024 12:54:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Text.php on line 15
[09-Jul-2024 18:07:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Legacy.php on line 19
[10-Jul-2024 03:54:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Target.php on line 6
[10-Jul-2024 22:09:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeEmbed.php on line 6
[11-Jul-2024 01:11:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy.php on line 8
[11-Jul-2024 02:41:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeObject.php on line 9
[11-Jul-2024 04:08:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Ruby.php on line 7
[11-Jul-2024 04:19:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Presentation.php on line 13
[11-Jul-2024 05:03:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/StyleAttribute.php on line 7
[12-Jul-2024 01:39:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Proprietary.php on line 7
[12-Jul-2024 03:39:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetBlank.php on line 7
[12-Jul-2024 04:46:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Nofollow.php on line 7
[12-Jul-2024 05:26:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoreferrer.php on line 7
[17-Jul-2024 02:34:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeScripting.php on line 7
[18-Jul-2024 19:09:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeScripting.php on line 7
[19-Jul-2024 06:08:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/StyleAttribute.php on line 7
[19-Jul-2024 07:49:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeEmbed.php on line 6
[19-Jul-2024 07:54:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/XMLCommonAttributes.php on line 3
[19-Jul-2024 09:40:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoopener.php on line 7
[19-Jul-2024 17:22:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Name.php on line 3
[19-Jul-2024 17:26:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Edit.php on line 7
[19-Jul-2024 18:15:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Ruby.php on line 7
[19-Jul-2024 23:35:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Image.php on line 8
[20-Jul-2024 02:12:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Iframe.php on line 10
[20-Jul-2024 03:18:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/List.php on line 6
[20-Jul-2024 13:26:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php on line 3
[22-Jul-2024 19:27:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy.php on line 8
[22-Jul-2024 19:27:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Text.php on line 15
[22-Jul-2024 19:27:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetBlank.php on line 7
[22-Jul-2024 19:27:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Scripting.php on line 16
[22-Jul-2024 19:27:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeEmbed.php on line 6
[22-Jul-2024 19:27:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Ruby.php on line 7
[22-Jul-2024 19:27:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Proprietary.php on line 7
[22-Jul-2024 19:28:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Name.php on line 3
[22-Jul-2024 19:28:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/List.php on line 6
[22-Jul-2024 19:28:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Image.php on line 8
[22-Jul-2024 19:28:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Hypertext.php on line 6
[22-Jul-2024 19:28:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Forms.php on line 6
[22-Jul-2024 19:28:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Edit.php on line 7
[22-Jul-2024 19:28:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Bdo.php on line 7
[22-Jul-2024 19:42:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Target.php on line 6
[22-Jul-2024 19:42:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tables.php on line 6
[22-Jul-2024 19:42:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeObject.php on line 9
[22-Jul-2024 19:42:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Object.php on line 8
[22-Jul-2024 19:42:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Nofollow.php on line 7
[22-Jul-2024 19:42:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Legacy.php on line 19
[22-Jul-2024 19:42:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Iframe.php on line 10
[22-Jul-2024 19:47:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/XMLCommonAttributes.php on line 3
[22-Jul-2024 19:47:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoreferrer.php on line 7
[22-Jul-2024 19:47:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Presentation.php on line 13
[22-Jul-2024 19:47:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php on line 3
[22-Jul-2024 19:47:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/CommonAttributes.php on line 3
[22-Jul-2024 19:49:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoopener.php on line 7
[22-Jul-2024 19:49:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/StyleAttribute.php on line 7
[22-Jul-2024 19:49:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeScripting.php on line 7
[23-Jul-2024 04:04:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Edit.php on line 7
[23-Jul-2024 04:27:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Object.php on line 8
[23-Jul-2024 04:28:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/List.php on line 6
[23-Jul-2024 04:29:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Name.php on line 3
[23-Jul-2024 04:30:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Text.php on line 15
[23-Jul-2024 05:37:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php on line 3
[24-Jul-2024 00:14:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Forms.php on line 6
[24-Jul-2024 03:13:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Hypertext.php on line 6
[24-Jul-2024 03:41:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tables.php on line 6
[24-Jul-2024 04:52:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Legacy.php on line 19
[24-Jul-2024 05:11:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Forms.php on line 6
[24-Jul-2024 05:55:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Presentation.php on line 13
[24-Jul-2024 07:03:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/XMLCommonAttributes.php on line 3
[24-Jul-2024 14:52:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoopener.php on line 7
[24-Jul-2024 15:24:51 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Proprietary.php on line 7
[24-Jul-2024 15:35:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/List.php on line 6
[24-Jul-2024 15:35:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Presentation.php on line 13
[24-Jul-2024 15:59:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Nofollow.php on line 7
[24-Jul-2024 17:50:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Proprietary.php on line 7
[24-Jul-2024 18:15:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Bdo.php on line 7
[24-Jul-2024 22:29:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Hypertext.php on line 6
[25-Jul-2024 05:47:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetBlank.php on line 7
[25-Jul-2024 08:44:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Text.php on line 15
[25-Jul-2024 08:51:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/CommonAttributes.php on line 3
[25-Jul-2024 10:28:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoreferrer.php on line 7
[25-Jul-2024 12:01:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy.php on line 8
[25-Jul-2024 12:30:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php on line 3
[25-Jul-2024 12:54:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Nofollow.php on line 7
[25-Jul-2024 13:30:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Target.php on line 6
[25-Jul-2024 13:32:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Scripting.php on line 16
[25-Jul-2024 15:00:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Text.php on line 15
[25-Jul-2024 16:44:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Legacy.php on line 19
[25-Jul-2024 16:45:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeObject.php on line 9
[25-Jul-2024 18:10:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoreferrer.php on line 7
[25-Jul-2024 19:36:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Object.php on line 8
[25-Jul-2024 19:41:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Bdo.php on line 7
[25-Jul-2024 20:02:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tables.php on line 6
[26-Jul-2024 00:16:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Ruby.php on line 7
[26-Jul-2024 05:50:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/CommonAttributes.php on line 3
[26-Jul-2024 11:10:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/StyleAttribute.php on line 7
[26-Jul-2024 14:37:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy.php on line 8
[27-Jul-2024 13:05:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Iframe.php on line 10
[27-Jul-2024 18:23:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Forms.php on line 6
[28-Jul-2024 00:31:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeScripting.php on line 7
[28-Jul-2024 03:08:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tables.php on line 6
[29-Jul-2024 00:14:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Name.php on line 3
[29-Jul-2024 00:16:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Text.php on line 15
[29-Jul-2024 00:20:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Object.php on line 8
[29-Jul-2024 00:22:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/List.php on line 6
[29-Jul-2024 01:43:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Edit.php on line 7
[29-Jul-2024 02:24:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php on line 3
[29-Jul-2024 03:27:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoopener.php on line 7
[29-Jul-2024 07:08:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Object.php on line 8
[29-Jul-2024 11:09:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy.php on line 8
[29-Jul-2024 20:56:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tables.php on line 6
[29-Jul-2024 20:59:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Hypertext.php on line 6
[29-Jul-2024 21:14:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Legacy.php on line 19
[29-Jul-2024 21:59:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Forms.php on line 6
[29-Jul-2024 22:23:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/XMLCommonAttributes.php on line 3
[30-Jul-2024 00:45:51 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Iframe.php on line 10
[30-Jul-2024 19:09:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeScripting.php on line 7
[30-Jul-2024 20:50:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy.php on line 8
[31-Jul-2024 02:35:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/XMLCommonAttributes.php on line 3
[01-Aug-2024 20:38:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/StyleAttribute.php on line 7
[01-Aug-2024 20:55:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Image.php on line 8
[02-Aug-2024 09:45:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Presentation.php on line 13
[02-Aug-2024 09:49:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Edit.php on line 7
[02-Aug-2024 22:12:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Object.php on line 8
[03-Aug-2024 10:25:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoopener.php on line 7
[03-Aug-2024 12:06:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Hypertext.php on line 6
[03-Aug-2024 12:54:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeScripting.php on line 7
[03-Aug-2024 16:08:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Iframe.php on line 10
[03-Aug-2024 16:43:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/StyleAttribute.php on line 7
[03-Aug-2024 19:39:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/List.php on line 6
[03-Aug-2024 22:01:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Presentation.php on line 13
[04-Aug-2024 03:00:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Proprietary.php on line 7
[04-Aug-2024 13:17:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeEmbed.php on line 6
[04-Aug-2024 17:59:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/List.php on line 6
[04-Aug-2024 20:01:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Legacy.php on line 19
[04-Aug-2024 20:07:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Forms.php on line 6
[04-Aug-2024 20:15:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetBlank.php on line 7
[04-Aug-2024 20:17:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Hypertext.php on line 6
[04-Aug-2024 20:33:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tables.php on line 6
[04-Aug-2024 21:27:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/XMLCommonAttributes.php on line 3
[05-Aug-2024 16:46:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Edit.php on line 7
[06-Aug-2024 08:30:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tables.php on line 6
[06-Aug-2024 08:51:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Object.php on line 8
[06-Aug-2024 20:39:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeEmbed.php on line 6
[07-Aug-2024 05:22:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Edit.php on line 7
[07-Aug-2024 15:06:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Forms.php on line 6
[08-Aug-2024 02:46:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Legacy.php on line 19
[08-Aug-2024 13:17:02 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/StyleAttribute.php on line 7
[08-Aug-2024 19:15:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Iframe.php on line 10
[09-Aug-2024 09:01:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoopener.php on line 7
[09-Aug-2024 13:39:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Scripting.php on line 16
[09-Aug-2024 14:31:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeScripting.php on line 7
[09-Aug-2024 18:56:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Presentation.php on line 13
[09-Aug-2024 22:11:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Bdo.php on line 7
[09-Aug-2024 23:20:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Nofollow.php on line 7
[10-Aug-2024 00:01:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php on line 3
[10-Aug-2024 02:34:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoreferrer.php on line 7
[10-Aug-2024 02:43:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/XMLCommonAttributes.php on line 3
[10-Aug-2024 12:28:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tables.php on line 6
[10-Aug-2024 15:31:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeObject.php on line 9
[10-Aug-2024 16:18:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tables.php on line 6
[10-Aug-2024 16:22:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Forms.php on line 6
[10-Aug-2024 16:45:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Legacy.php on line 19
[10-Aug-2024 17:31:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/XMLCommonAttributes.php on line 3
[10-Aug-2024 19:29:51 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/CommonAttributes.php on line 3
[10-Aug-2024 23:55:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Hypertext.php on line 6
[11-Aug-2024 01:46:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Bdo.php on line 7
[11-Aug-2024 04:11:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Name.php on line 3
[11-Aug-2024 09:19:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/CommonAttributes.php on line 3
[12-Aug-2024 18:19:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php on line 3
[13-Aug-2024 12:57:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Nofollow.php on line 7
[15-Aug-2024 05:57:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Edit.php on line 7
[15-Aug-2024 15:33:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetBlank.php on line 7
[15-Aug-2024 16:57:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Text.php on line 15
[16-Aug-2024 06:41:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/List.php on line 6
[16-Aug-2024 18:36:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Image.php on line 8
[17-Aug-2024 04:00:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetBlank.php on line 7
[17-Aug-2024 06:07:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php on line 3
[18-Aug-2024 06:24:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoreferrer.php on line 7
[18-Aug-2024 18:15:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Target.php on line 6
[20-Aug-2024 07:24:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy.php on line 8
[20-Aug-2024 13:17:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Target.php on line 6
[20-Aug-2024 15:29:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Forms.php on line 6
[21-Aug-2024 00:12:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Nofollow.php on line 7
[21-Aug-2024 09:13:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Legacy.php on line 19
[22-Aug-2024 01:39:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/List.php on line 6
[24-Aug-2024 10:28:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/StyleAttribute.php on line 7
[24-Aug-2024 11:49:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/XMLCommonAttributes.php on line 3
[25-Aug-2024 13:34:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tables.php on line 6
[25-Aug-2024 19:50:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tables.php on line 6
[25-Aug-2024 19:56:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Forms.php on line 6
[25-Aug-2024 20:33:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Legacy.php on line 19
[25-Aug-2024 20:39:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/XMLCommonAttributes.php on line 3
[25-Aug-2024 22:54:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Hypertext.php on line 6
[26-Aug-2024 06:11:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Bdo.php on line 7
[26-Aug-2024 07:17:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/CommonAttributes.php on line 3
[26-Aug-2024 07:27:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoopener.php on line 7
[26-Aug-2024 08:19:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Scripting.php on line 16
[26-Aug-2024 08:30:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Target.php on line 6
[26-Aug-2024 16:55:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Image.php on line 8
[26-Aug-2024 20:25:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Iframe.php on line 10
[27-Aug-2024 23:43:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Forms.php on line 6
[28-Aug-2024 20:30:02 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeEmbed.php on line 6
[30-Aug-2024 01:10:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Name.php on line 3
[30-Aug-2024 10:32:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeEmbed.php on line 6
[30-Aug-2024 14:07:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Legacy.php on line 19
[30-Aug-2024 19:21:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/List.php on line 6
[30-Aug-2024 23:29:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Iframe.php on line 10
[31-Aug-2024 01:23:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Name.php on line 3
[31-Aug-2024 01:44:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php on line 3
[31-Aug-2024 02:57:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Image.php on line 8
[31-Aug-2024 04:34:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/XMLCommonAttributes.php on line 3
[31-Aug-2024 08:08:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Edit.php on line 7
[31-Aug-2024 08:18:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeScripting.php on line 7
[31-Aug-2024 10:34:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Forms.php on line 6
[31-Aug-2024 11:14:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Ruby.php on line 7
[31-Aug-2024 17:31:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tables.php on line 6
[31-Aug-2024 17:38:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Forms.php on line 6
[31-Aug-2024 17:50:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoopener.php on line 7
[31-Aug-2024 18:00:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/StyleAttribute.php on line 7
[31-Aug-2024 18:02:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Proprietary.php on line 7
[31-Aug-2024 19:02:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Ruby.php on line 7
[31-Aug-2024 19:12:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Legacy.php on line 19
[31-Aug-2024 19:25:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/XMLCommonAttributes.php on line 3
[31-Aug-2024 19:36:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Hypertext.php on line 6
[31-Aug-2024 20:36:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoreferrer.php on line 7
[31-Aug-2024 22:19:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Hypertext.php on line 6
[31-Aug-2024 22:49:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeObject.php on line 9
[31-Aug-2024 23:21:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Scripting.php on line 16
[01-Sep-2024 00:24:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Nofollow.php on line 7
[01-Sep-2024 01:59:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetBlank.php on line 7
[01-Sep-2024 02:57:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Presentation.php on line 13
[01-Sep-2024 02:59:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy.php on line 8
[01-Sep-2024 04:12:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Bdo.php on line 7
[01-Sep-2024 06:05:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tables.php on line 6
[01-Sep-2024 08:08:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Target.php on line 6
[01-Sep-2024 08:20:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Text.php on line 15
[01-Sep-2024 12:04:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Object.php on line 8
[01-Sep-2024 15:21:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/XMLCommonAttributes.php on line 3
[01-Sep-2024 16:32:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Image.php on line 8
[01-Sep-2024 18:05:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Iframe.php on line 10
[01-Sep-2024 18:16:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Legacy.php on line 19
[01-Sep-2024 19:11:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Proprietary.php on line 7
[01-Sep-2024 20:06:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Bdo.php on line 7
[01-Sep-2024 23:16:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy.php on line 8
[01-Sep-2024 23:16:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Text.php on line 15
[01-Sep-2024 23:16:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetBlank.php on line 7
[01-Sep-2024 23:16:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Scripting.php on line 16
[01-Sep-2024 23:16:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeEmbed.php on line 6
[01-Sep-2024 23:16:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Ruby.php on line 7
[01-Sep-2024 23:16:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Proprietary.php on line 7
[01-Sep-2024 23:16:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Name.php on line 3
[01-Sep-2024 23:16:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/List.php on line 6
[01-Sep-2024 23:16:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Image.php on line 8
[01-Sep-2024 23:17:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Hypertext.php on line 6
[01-Sep-2024 23:17:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Forms.php on line 6
[01-Sep-2024 23:17:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Edit.php on line 7
[01-Sep-2024 23:17:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Bdo.php on line 7
[01-Sep-2024 23:32:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/CommonAttributes.php on line 3
[01-Sep-2024 23:40:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Target.php on line 6
[01-Sep-2024 23:40:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tables.php on line 6
[01-Sep-2024 23:40:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeObject.php on line 9
[01-Sep-2024 23:41:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Nofollow.php on line 7
[01-Sep-2024 23:41:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Object.php on line 8
[01-Sep-2024 23:41:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Legacy.php on line 19
[01-Sep-2024 23:41:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Iframe.php on line 10
[01-Sep-2024 23:49:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/XMLCommonAttributes.php on line 3
[01-Sep-2024 23:49:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoreferrer.php on line 7
[01-Sep-2024 23:49:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Presentation.php on line 13
[01-Sep-2024 23:49:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php on line 3
[01-Sep-2024 23:49:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/CommonAttributes.php on line 3
[01-Sep-2024 23:52:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoopener.php on line 7
[01-Sep-2024 23:52:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/StyleAttribute.php on line 7
[01-Sep-2024 23:52:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeScripting.php on line 7
[02-Sep-2024 01:32:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Target.php on line 6
[04-Sep-2024 14:13:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Object.php on line 8
[05-Sep-2024 05:57:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/CommonAttributes.php on line 3
[05-Sep-2024 07:18:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoopener.php on line 7
[05-Sep-2024 08:14:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Target.php on line 6
[05-Sep-2024 08:21:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Scripting.php on line 16
[05-Sep-2024 15:03:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeObject.php on line 9
[06-Sep-2024 00:57:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Target.php on line 6
[07-Sep-2024 00:17:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoreferrer.php on line 7
[07-Sep-2024 18:47:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Image.php on line 8
[07-Sep-2024 20:14:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Iframe.php on line 10
[08-Sep-2024 16:05:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Bdo.php on line 7
[08-Sep-2024 19:07:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Proprietary.php on line 7
[08-Sep-2024 21:49:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Iframe.php on line 10
[08-Sep-2024 22:34:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoopener.php on line 7
[09-Sep-2024 04:20:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Object.php on line 8
[09-Sep-2024 05:34:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Hypertext.php on line 6
[09-Sep-2024 12:20:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Image.php on line 8
[09-Sep-2024 13:02:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeScripting.php on line 7
[09-Sep-2024 13:04:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Hypertext.php on line 6
[09-Sep-2024 14:57:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/StyleAttribute.php on line 7
[09-Sep-2024 18:08:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeEmbed.php on line 6
[09-Sep-2024 19:40:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeObject.php on line 9
[09-Sep-2024 22:41:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Presentation.php on line 13
[09-Sep-2024 23:09:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeObject.php on line 9
[10-Sep-2024 01:31:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/List.php on line 6
[11-Sep-2024 08:02:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Edit.php on line 7
[11-Sep-2024 22:56:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy.php on line 8
[11-Sep-2024 22:56:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Text.php on line 15
[11-Sep-2024 22:56:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetBlank.php on line 7
[11-Sep-2024 22:56:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Scripting.php on line 16
[11-Sep-2024 22:56:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeEmbed.php on line 6
[11-Sep-2024 22:56:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Ruby.php on line 7
[11-Sep-2024 22:56:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Proprietary.php on line 7
[11-Sep-2024 22:56:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Name.php on line 3
[11-Sep-2024 22:56:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/List.php on line 6
[11-Sep-2024 22:56:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Image.php on line 8
[11-Sep-2024 22:56:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Hypertext.php on line 6
[11-Sep-2024 22:56:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Forms.php on line 6
[11-Sep-2024 22:56:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Edit.php on line 7
[11-Sep-2024 22:56:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Bdo.php on line 7
[11-Sep-2024 23:10:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Target.php on line 6
[11-Sep-2024 23:10:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tables.php on line 6
[11-Sep-2024 23:10:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeObject.php on line 9
[11-Sep-2024 23:10:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Object.php on line 8
[11-Sep-2024 23:10:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Nofollow.php on line 7
[11-Sep-2024 23:10:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Legacy.php on line 19
[11-Sep-2024 23:10:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Iframe.php on line 10
[11-Sep-2024 23:14:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/XMLCommonAttributes.php on line 3
[11-Sep-2024 23:15:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoreferrer.php on line 7
[11-Sep-2024 23:15:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Presentation.php on line 13
[11-Sep-2024 23:15:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php on line 3
[11-Sep-2024 23:15:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/CommonAttributes.php on line 3
[11-Sep-2024 23:17:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoopener.php on line 7
[11-Sep-2024 23:17:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/StyleAttribute.php on line 7
[11-Sep-2024 23:17:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeScripting.php on line 7
[13-Sep-2024 06:37:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy.php on line 8
[13-Sep-2024 06:37:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Text.php on line 15
[13-Sep-2024 06:37:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetBlank.php on line 7
[13-Sep-2024 06:37:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Scripting.php on line 16
[13-Sep-2024 06:37:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeEmbed.php on line 6
[13-Sep-2024 06:37:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Ruby.php on line 7
[13-Sep-2024 06:37:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Proprietary.php on line 7
[13-Sep-2024 06:37:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Name.php on line 3
[13-Sep-2024 06:37:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/List.php on line 6
[13-Sep-2024 06:37:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Image.php on line 8
[13-Sep-2024 06:37:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Hypertext.php on line 6
[13-Sep-2024 06:37:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Forms.php on line 6
[13-Sep-2024 06:38:02 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Edit.php on line 7
[13-Sep-2024 06:38:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Bdo.php on line 7
[13-Sep-2024 06:39:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy.php on line 8
[13-Sep-2024 06:39:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Text.php on line 15
[13-Sep-2024 06:39:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetBlank.php on line 7
[13-Sep-2024 06:39:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Scripting.php on line 16
[13-Sep-2024 06:39:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeEmbed.php on line 6
[13-Sep-2024 06:39:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Ruby.php on line 7
[13-Sep-2024 06:39:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Proprietary.php on line 7
[13-Sep-2024 06:39:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Name.php on line 3
[13-Sep-2024 06:39:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/List.php on line 6
[13-Sep-2024 06:39:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Image.php on line 8
[13-Sep-2024 06:39:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Hypertext.php on line 6
[13-Sep-2024 06:39:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Forms.php on line 6
[13-Sep-2024 06:39:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Edit.php on line 7
[13-Sep-2024 06:39:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Bdo.php on line 7
[13-Sep-2024 07:04:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Target.php on line 6
[13-Sep-2024 07:04:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tables.php on line 6
[13-Sep-2024 07:04:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeObject.php on line 9
[13-Sep-2024 07:04:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Object.php on line 8
[13-Sep-2024 07:04:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Nofollow.php on line 7
[13-Sep-2024 07:04:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Legacy.php on line 19
[13-Sep-2024 07:04:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Iframe.php on line 10
[13-Sep-2024 07:04:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Target.php on line 6
[13-Sep-2024 07:04:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tables.php on line 6
[13-Sep-2024 07:05:02 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeObject.php on line 9
[13-Sep-2024 07:05:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Object.php on line 8
[13-Sep-2024 07:05:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Nofollow.php on line 7
[13-Sep-2024 07:05:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Legacy.php on line 19
[13-Sep-2024 07:05:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Iframe.php on line 10
[13-Sep-2024 07:14:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/XMLCommonAttributes.php on line 3
[13-Sep-2024 07:14:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoreferrer.php on line 7
[13-Sep-2024 07:14:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Presentation.php on line 13
[13-Sep-2024 07:14:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php on line 3
[13-Sep-2024 07:14:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/CommonAttributes.php on line 3
[13-Sep-2024 07:14:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/XMLCommonAttributes.php on line 3
[13-Sep-2024 07:14:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoreferrer.php on line 7
[13-Sep-2024 07:14:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Presentation.php on line 13
[13-Sep-2024 07:14:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php on line 3
[13-Sep-2024 07:14:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/CommonAttributes.php on line 3
[13-Sep-2024 07:20:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoopener.php on line 7
[13-Sep-2024 07:20:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/StyleAttribute.php on line 7
[13-Sep-2024 07:20:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeScripting.php on line 7
[13-Sep-2024 07:20:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoopener.php on line 7
[13-Sep-2024 07:20:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/StyleAttribute.php on line 7
[13-Sep-2024 07:20:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeScripting.php on line 7
[13-Sep-2024 16:34:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoreferrer.php on line 7
[13-Sep-2024 18:58:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoreferrer.php on line 7
[14-Sep-2024 09:56:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoreferrer.php on line 7
[14-Sep-2024 18:55:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/CommonAttributes.php on line 3
[15-Sep-2024 09:38:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Bdo.php on line 7
[15-Sep-2024 11:22:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoopener.php on line 7
[15-Sep-2024 11:38:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Target.php on line 6
[15-Sep-2024 13:18:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Scripting.php on line 16
[16-Sep-2024 02:59:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tables.php on line 6
[16-Sep-2024 04:04:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Bdo.php on line 7
[16-Sep-2024 08:09:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Scripting.php on line 16
[16-Sep-2024 08:25:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/CommonAttributes.php on line 3
[16-Sep-2024 09:07:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoreferrer.php on line 7
[16-Sep-2024 16:49:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeObject.php on line 9
[17-Sep-2024 00:39:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/XMLCommonAttributes.php on line 3
[17-Sep-2024 03:16:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Nofollow.php on line 7
[17-Sep-2024 03:46:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Name.php on line 3
[17-Sep-2024 04:38:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php on line 3
[18-Sep-2024 13:15:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/CommonAttributes.php on line 3
[19-Sep-2024 13:52:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Image.php on line 8
[20-Sep-2024 21:09:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Target.php on line 6
[21-Sep-2024 02:26:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/CommonAttributes.php on line 3
[21-Sep-2024 05:57:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoopener.php on line 7
[21-Sep-2024 20:36:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/CommonAttributes.php on line 3
[21-Sep-2024 21:20:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetBlank.php on line 7
[22-Sep-2024 00:35:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Scripting.php on line 16
[22-Sep-2024 09:35:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Text.php on line 15
[23-Sep-2024 15:50:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Ruby.php on line 7
[24-Sep-2024 13:46:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Legacy.php on line 19
[24-Sep-2024 19:21:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Forms.php on line 6
[25-Sep-2024 05:35:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/XMLCommonAttributes.php on line 3
[25-Sep-2024 09:12:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Hypertext.php on line 6
[25-Sep-2024 10:13:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tables.php on line 6
[26-Sep-2024 13:20:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetBlank.php on line 7
[26-Sep-2024 20:44:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Hypertext.php on line 6
[26-Sep-2024 21:19:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoopener.php on line 7
[27-Sep-2024 07:11:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Legacy.php on line 19
[27-Sep-2024 18:36:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Target.php on line 6
[27-Sep-2024 22:34:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/CommonAttributes.php on line 3
[27-Sep-2024 22:45:02 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Scripting.php on line 16
[27-Sep-2024 23:25:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetBlank.php on line 7
[28-Sep-2024 02:09:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoopener.php on line 7
[28-Sep-2024 08:30:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Image.php on line 8
[28-Sep-2024 12:18:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Bdo.php on line 7
[28-Sep-2024 23:01:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Bdo.php on line 7
[01-Oct-2024 19:38:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tables.php on line 6
[02-Oct-2024 05:24:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/XMLCommonAttributes.php on line 3
[02-Oct-2024 08:16:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Legacy.php on line 19
[02-Oct-2024 10:23:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Forms.php on line 6
[02-Oct-2024 10:26:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Hypertext.php on line 6
[03-Oct-2024 03:57:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Legacy.php on line 19
[03-Oct-2024 07:04:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Scripting.php on line 16
[03-Oct-2024 14:54:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Forms.php on line 6
[03-Oct-2024 18:31:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeEmbed.php on line 6
[03-Oct-2024 20:12:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Target.php on line 6
[04-Oct-2024 03:43:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy.php on line 8
[04-Oct-2024 16:08:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/List.php on line 6
[05-Oct-2024 00:12:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeEmbed.php on line 6
[05-Oct-2024 00:35:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeEmbed.php on line 6
[05-Oct-2024 03:21:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Iframe.php on line 10
[07-Oct-2024 06:26:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Iframe.php on line 10
[07-Oct-2024 08:29:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/List.php on line 6
[07-Oct-2024 13:55:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Name.php on line 3
[08-Oct-2024 00:02:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/StyleAttribute.php on line 7
[08-Oct-2024 01:37:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/XMLCommonAttributes.php on line 3
[08-Oct-2024 06:02:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Image.php on line 8
[08-Oct-2024 16:11:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Edit.php on line 7
[08-Oct-2024 18:01:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Hypertext.php on line 6
[08-Oct-2024 18:48:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Ruby.php on line 7
[08-Oct-2024 20:40:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeScripting.php on line 7
[08-Oct-2024 23:59:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Ruby.php on line 7
[09-Oct-2024 00:43:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php on line 3
[09-Oct-2024 01:24:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Presentation.php on line 13
[09-Oct-2024 02:37:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Image.php on line 8
[09-Oct-2024 02:44:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Forms.php on line 6
[09-Oct-2024 05:16:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoopener.php on line 7
[09-Oct-2024 07:07:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Name.php on line 3
[09-Oct-2024 07:12:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Proprietary.php on line 7
[09-Oct-2024 08:14:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Target.php on line 6
[09-Oct-2024 09:28:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Scripting.php on line 16
[09-Oct-2024 09:51:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetBlank.php on line 7
[09-Oct-2024 12:30:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Object.php on line 8
[09-Oct-2024 12:44:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Bdo.php on line 7
[09-Oct-2024 13:59:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Nofollow.php on line 7
[09-Oct-2024 16:41:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Legacy.php on line 19
[09-Oct-2024 20:43:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoreferrer.php on line 7
[09-Oct-2024 20:59:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tables.php on line 6
[09-Oct-2024 22:12:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy.php on line 8
[10-Oct-2024 04:36:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Name.php on line 3
[10-Oct-2024 06:56:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Text.php on line 15
[10-Oct-2024 09:39:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeObject.php on line 9
[10-Oct-2024 11:13:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/CommonAttributes.php on line 3
[10-Oct-2024 12:09:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Hypertext.php on line 6
[12-Oct-2024 14:18:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeEmbed.php on line 6
[12-Oct-2024 17:37:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Image.php on line 8
[12-Oct-2024 22:53:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeEmbed.php on line 6
[12-Oct-2024 23:23:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Proprietary.php on line 7
[13-Oct-2024 05:11:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Iframe.php on line 10
[13-Oct-2024 11:18:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/List.php on line 6
[13-Oct-2024 11:43:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Presentation.php on line 13
[13-Oct-2024 12:03:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Hypertext.php on line 6
[13-Oct-2024 19:55:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeScripting.php on line 7
[13-Oct-2024 20:02:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoopener.php on line 7
[13-Oct-2024 20:08:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Iframe.php on line 10
[13-Oct-2024 20:51:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Object.php on line 8
[13-Oct-2024 23:12:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/StyleAttribute.php on line 7
[14-Oct-2024 21:50:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Ruby.php on line 7
[16-Oct-2024 15:22:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Name.php on line 3
[18-Oct-2024 13:33:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Text.php on line 15
[18-Oct-2024 16:23:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Bdo.php on line 7
[18-Oct-2024 16:23:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/CommonAttributes.php on line 3
[18-Oct-2024 16:23:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Target.php on line 6
[18-Oct-2024 16:23:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Scripting.php on line 16
[18-Oct-2024 16:23:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Text.php on line 15
[18-Oct-2024 16:24:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Ruby.php on line 7
[18-Oct-2024 16:26:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Object.php on line 8
[18-Oct-2024 16:26:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Presentation.php on line 13
[18-Oct-2024 16:27:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/List.php on line 6
[18-Oct-2024 16:28:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/XMLCommonAttributes.php on line 3
[18-Oct-2024 16:28:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Iframe.php on line 10
[18-Oct-2024 16:28:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/StyleAttribute.php on line 7
[18-Oct-2024 16:28:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeScripting.php on line 7
[18-Oct-2024 16:28:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoreferrer.php on line 7
[18-Oct-2024 16:29:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoopener.php on line 7
[18-Oct-2024 16:29:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Edit.php on line 7
[18-Oct-2024 16:29:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetBlank.php on line 7
[18-Oct-2024 16:29:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Legacy.php on line 19
[18-Oct-2024 16:30:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeObject.php on line 9
[18-Oct-2024 16:31:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php on line 3
[18-Oct-2024 16:31:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Hypertext.php on line 6
[18-Oct-2024 16:31:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Proprietary.php on line 7
[18-Oct-2024 16:32:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeEmbed.php on line 6
[18-Oct-2024 16:32:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tables.php on line 6
[18-Oct-2024 16:33:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Name.php on line 3
[18-Oct-2024 16:33:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Image.php on line 8
[18-Oct-2024 16:34:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Forms.php on line 6
[18-Oct-2024 16:34:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy.php on line 8
[18-Oct-2024 16:35:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Nofollow.php on line 7
[18-Oct-2024 18:15:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Edit.php on line 7
[18-Oct-2024 19:21:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Image.php on line 8
[19-Oct-2024 05:17:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Hypertext.php on line 6
[19-Oct-2024 22:16:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetBlank.php on line 7
[20-Oct-2024 17:48:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Scripting.php on line 16
[20-Oct-2024 23:57:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Proprietary.php on line 7
[22-Oct-2024 12:11:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeEmbed.php on line 6
[23-Oct-2024 14:15:51 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tables.php on line 6
[23-Oct-2024 18:53:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoreferrer.php on line 7
[23-Oct-2024 19:31:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/CommonAttributes.php on line 3
[23-Oct-2024 22:50:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Scripting.php on line 16
[24-Oct-2024 02:57:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Name.php on line 3
[24-Oct-2024 04:42:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeObject.php on line 9
[24-Oct-2024 07:09:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/XMLCommonAttributes.php on line 3
[24-Oct-2024 13:58:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Bdo.php on line 7
[24-Oct-2024 21:34:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Nofollow.php on line 7
[25-Oct-2024 00:26:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php on line 3
[29-Oct-2024 16:48:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Bdo.php on line 7
[29-Oct-2024 21:51:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Text.php on line 15
[30-Oct-2024 07:45:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetBlank.php on line 7
[30-Oct-2024 10:19:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Forms.php on line 6
[31-Oct-2024 14:01:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy.php on line 8
[31-Oct-2024 14:01:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Text.php on line 15
[31-Oct-2024 14:01:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetBlank.php on line 7
[31-Oct-2024 14:01:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Scripting.php on line 16
[31-Oct-2024 14:01:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeEmbed.php on line 6
[31-Oct-2024 14:01:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Ruby.php on line 7
[31-Oct-2024 14:01:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Proprietary.php on line 7
[31-Oct-2024 14:02:02 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Name.php on line 3
[31-Oct-2024 14:02:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/List.php on line 6
[31-Oct-2024 14:02:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Image.php on line 8
[31-Oct-2024 14:02:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Hypertext.php on line 6
[31-Oct-2024 14:02:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Forms.php on line 6
[31-Oct-2024 14:02:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Edit.php on line 7
[31-Oct-2024 14:02:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Bdo.php on line 7
[31-Oct-2024 14:22:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Target.php on line 6
[31-Oct-2024 14:22:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tables.php on line 6
[31-Oct-2024 14:22:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeObject.php on line 9
[31-Oct-2024 14:22:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Object.php on line 8
[31-Oct-2024 14:22:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Nofollow.php on line 7
[31-Oct-2024 14:22:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Legacy.php on line 19
[31-Oct-2024 14:22:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Iframe.php on line 10
[31-Oct-2024 14:32:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/XMLCommonAttributes.php on line 3
[31-Oct-2024 14:32:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoreferrer.php on line 7
[31-Oct-2024 14:32:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Presentation.php on line 13
[31-Oct-2024 14:32:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php on line 3
[31-Oct-2024 14:32:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/CommonAttributes.php on line 3
[31-Oct-2024 14:37:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoopener.php on line 7
[31-Oct-2024 14:37:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/StyleAttribute.php on line 7
[31-Oct-2024 14:37:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeScripting.php on line 7
[01-Nov-2024 23:08:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Scripting.php on line 16
[02-Nov-2024 06:20:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Object.php on line 8
[02-Nov-2024 07:14:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Name.php on line 3
[03-Nov-2024 22:03:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/StyleAttribute.php on line 7
[04-Nov-2024 01:20:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Text.php on line 15
[06-Nov-2024 18:51:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Object.php on line 8
[10-Nov-2024 07:53:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy.php on line 8
[10-Nov-2024 07:53:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Text.php on line 15
[10-Nov-2024 07:53:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetBlank.php on line 7
[10-Nov-2024 07:53:51 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Scripting.php on line 16
[10-Nov-2024 07:53:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeEmbed.php on line 6
[10-Nov-2024 07:53:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Ruby.php on line 7
[10-Nov-2024 07:54:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Proprietary.php on line 7
[10-Nov-2024 07:54:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Name.php on line 3
[10-Nov-2024 07:54:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/List.php on line 6
[10-Nov-2024 07:54:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Image.php on line 8
[10-Nov-2024 07:54:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Hypertext.php on line 6
[10-Nov-2024 07:54:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Forms.php on line 6
[10-Nov-2024 07:54:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Edit.php on line 7
[10-Nov-2024 07:54:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Bdo.php on line 7
[10-Nov-2024 07:54:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Target.php on line 6
[10-Nov-2024 07:54:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tables.php on line 6
[10-Nov-2024 07:54:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeObject.php on line 9
[10-Nov-2024 07:54:51 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Object.php on line 8
[10-Nov-2024 07:54:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Nofollow.php on line 7
[10-Nov-2024 07:54:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Legacy.php on line 19
[10-Nov-2024 07:55:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Iframe.php on line 10
[10-Nov-2024 07:55:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/XMLCommonAttributes.php on line 3
[10-Nov-2024 07:55:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoreferrer.php on line 7
[10-Nov-2024 07:55:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Presentation.php on line 13
[10-Nov-2024 07:55:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php on line 3
[10-Nov-2024 07:55:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/CommonAttributes.php on line 3
[10-Nov-2024 07:55:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/TargetNoopener.php on line 7
[10-Nov-2024 07:55:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/StyleAttribute.php on line 7
[10-Nov-2024 07:55:51 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/SafeScripting.php on line 7
[11-Nov-2024 10:33:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_HTMLModule' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Ruby.php on line 7
htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy.php 0000644 00000016324 14716425661 0016552 0 ustar 00 'none', 'light', 'medium', 'heavy');
/**
* Default level to place all fixes in.
* Disabled by default.
* @type string
*/
public $defaultLevel = null;
/**
* Lists of fixes used by getFixesForLevel().
* Format is:
* HTMLModule_Tidy->fixesForLevel[$level] = array('fix-1', 'fix-2');
* @type array
*/
public $fixesForLevel = array(
'light' => array(),
'medium' => array(),
'heavy' => array()
);
/**
* Lazy load constructs the module by determining the necessary
* fixes to create and then delegating to the populate() function.
* @param HTMLPurifier_Config $config
* @todo Wildcard matching and error reporting when an added or
* subtracted fix has no effect.
*/
public function setup($config)
{
// create fixes, initialize fixesForLevel
$fixes = $this->makeFixes();
$this->makeFixesForLevel($fixes);
// figure out which fixes to use
$level = $config->get('HTML.TidyLevel');
$fixes_lookup = $this->getFixesForLevel($level);
// get custom fix declarations: these need namespace processing
$add_fixes = $config->get('HTML.TidyAdd');
$remove_fixes = $config->get('HTML.TidyRemove');
foreach ($fixes as $name => $fix) {
// needs to be refactored a little to implement globbing
if (isset($remove_fixes[$name]) ||
(!isset($add_fixes[$name]) && !isset($fixes_lookup[$name]))) {
unset($fixes[$name]);
}
}
// populate this module with necessary fixes
$this->populate($fixes);
}
/**
* Retrieves all fixes per a level, returning fixes for that specific
* level as well as all levels below it.
* @param string $level level identifier, see $levels for valid values
* @return array Lookup up table of fixes
*/
public function getFixesForLevel($level)
{
if ($level == $this->levels[0]) {
return array();
}
$activated_levels = array();
for ($i = 1, $c = count($this->levels); $i < $c; $i++) {
$activated_levels[] = $this->levels[$i];
if ($this->levels[$i] == $level) {
break;
}
}
if ($i == $c) {
trigger_error(
'Tidy level ' . htmlspecialchars($level) . ' not recognized',
E_USER_WARNING
);
return array();
}
$ret = array();
foreach ($activated_levels as $level) {
foreach ($this->fixesForLevel[$level] as $fix) {
$ret[$fix] = true;
}
}
return $ret;
}
/**
* Dynamically populates the $fixesForLevel member variable using
* the fixes array. It may be custom overloaded, used in conjunction
* with $defaultLevel, or not used at all.
* @param array $fixes
*/
public function makeFixesForLevel($fixes)
{
if (!isset($this->defaultLevel)) {
return;
}
if (!isset($this->fixesForLevel[$this->defaultLevel])) {
trigger_error(
'Default level ' . $this->defaultLevel . ' does not exist',
E_USER_ERROR
);
return;
}
$this->fixesForLevel[$this->defaultLevel] = array_keys($fixes);
}
/**
* Populates the module with transforms and other special-case code
* based on a list of fixes passed to it
* @param array $fixes Lookup table of fixes to activate
*/
public function populate($fixes)
{
foreach ($fixes as $name => $fix) {
// determine what the fix is for
list($type, $params) = $this->getFixType($name);
switch ($type) {
case 'attr_transform_pre':
case 'attr_transform_post':
$attr = $params['attr'];
if (isset($params['element'])) {
$element = $params['element'];
if (empty($this->info[$element])) {
$e = $this->addBlankElement($element);
} else {
$e = $this->info[$element];
}
} else {
$type = "info_$type";
$e = $this;
}
// PHP does some weird parsing when I do
// $e->$type[$attr], so I have to assign a ref.
$f =& $e->$type;
$f[$attr] = $fix;
break;
case 'tag_transform':
$this->info_tag_transform[$params['element']] = $fix;
break;
case 'child':
case 'content_model_type':
$element = $params['element'];
if (empty($this->info[$element])) {
$e = $this->addBlankElement($element);
} else {
$e = $this->info[$element];
}
$e->$type = $fix;
break;
default:
trigger_error("Fix type $type not supported", E_USER_ERROR);
break;
}
}
}
/**
* Parses a fix name and determines what kind of fix it is, as well
* as other information defined by the fix
* @param $name String name of fix
* @return array(string $fix_type, array $fix_parameters)
* @note $fix_parameters is type dependant, see populate() for usage
* of these parameters
*/
public function getFixType($name)
{
// parse it
$property = $attr = null;
if (strpos($name, '#') !== false) {
list($name, $property) = explode('#', $name);
}
if (strpos($name, '@') !== false) {
list($name, $attr) = explode('@', $name);
}
// figure out the parameters
$params = array();
if ($name !== '') {
$params['element'] = $name;
}
if (!is_null($attr)) {
$params['attr'] = $attr;
}
// special case: attribute transform
if (!is_null($attr)) {
if (is_null($property)) {
$property = 'pre';
}
$type = 'attr_transform_' . $property;
return array($type, $params);
}
// special case: tag transform
if (is_null($property)) {
return array('tag_transform', $params);
}
return array($property, $params);
}
/**
* Defines all fixes the module will perform in a compact
* associative array of fix name to fix implementation.
* @return array
*/
public function makeFixes()
{
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/HTMLModule/CommonAttributes.php 0000644 00000001236 14716425661 0021134 0 ustar 00 array(
0 => array('Style'),
// 'xml:space' => false,
'class' => 'Class',
'id' => 'ID',
'title' => 'CDATA',
),
'Lang' => array(),
'I18N' => array(
0 => array('Lang'), // proprietary, for xml:lang/lang
),
'Common' => array(
0 => array('Core', 'I18N')
)
);
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/HTMLModule/XMLCommonAttributes.php 0000644 00000000540 14716425661 0021512 0 ustar 00 array(
'xml:lang' => 'LanguageCode',
)
);
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/HTMLModule/Image.php 0000644 00000002554 14716425661 0016663 0 ustar 00 get('HTML.MaxImgLength');
$img = $this->addElement(
'img',
'Inline',
'Empty',
'Common',
array(
'alt*' => 'Text',
// According to the spec, it's Length, but percents can
// be abused, so we allow only Pixels.
'height' => 'Pixels#' . $max,
'width' => 'Pixels#' . $max,
'longdesc' => 'URI',
'src*' => new HTMLPurifier_AttrDef_URI(true), // embedded
)
);
if ($max === null || $config->get('HTML.Trusted')) {
$img->attr['height'] =
$img->attr['width'] = 'Length';
}
// kind of strange, but splitting things up would be inefficient
$img->attr_transform_pre[] =
$img->attr_transform_post[] =
new HTMLPurifier_AttrTransform_ImgRequired();
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/HTMLModule/Nofollow.php 0000644 00000000773 14716425661 0017441 0 ustar 00 addBlankElement('a');
$a->attr_transform_post[] = new HTMLPurifier_AttrTransform_Nofollow();
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/HTMLModule/List.php 0000644 00000003565 14716425661 0016557 0 ustar 00 'List');
/**
* @param HTMLPurifier_Config $config
*/
public function setup($config)
{
$ol = $this->addElement('ol', 'List', new HTMLPurifier_ChildDef_List(), 'Common');
$ul = $this->addElement('ul', 'List', new HTMLPurifier_ChildDef_List(), 'Common');
// XXX The wrap attribute is handled by MakeWellFormed. This is all
// quite unsatisfactory, because we generated this
// *specifically* for lists, and now a big chunk of the handling
// is done properly by the List ChildDef. So actually, we just
// want enough information to make autoclosing work properly,
// and then hand off the tricky stuff to the ChildDef.
$ol->wrap = 'li';
$ul->wrap = 'li';
$this->addElement('dl', 'List', 'Required: dt | dd', 'Common');
$this->addElement('li', false, 'Flow', 'Common');
$this->addElement('dd', false, 'Flow', 'Common');
$this->addElement('dt', false, 'Inline', 'Common');
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/HTMLModule/Target.php 0000644 00000001127 14716425661 0017062 0 ustar 00 addBlankElement($name);
$e->attr = array(
'target' => new HTMLPurifier_AttrDef_HTML_FrameTarget()
);
}
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/HTMLModule/Bdo.php 0000644 00000002004 14716425661 0016333 0 ustar 00 array('dir' => false)
);
/**
* @param HTMLPurifier_Config $config
*/
public function setup($config)
{
$bdo = $this->addElement(
'bdo',
'Inline',
'Inline',
array('Core', 'Lang'),
array(
'dir' => 'Enum#ltr,rtl', // required
// The Abstract Module specification has the attribute
// inclusions wrong for bdo: bdo allows Lang
)
);
$bdo->attr_transform_post[] = new HTMLPurifier_AttrTransform_BdoDir();
$this->attr_collections['I18N']['dir'] = 'Enum#ltr,rtl';
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/HTMLModule/Object.php 0000644 00000002763 14716425661 0017051 0 ustar 00 to cater to legacy browsers: this
* module does not allow this sort of behavior
*/
class HTMLPurifier_HTMLModule_Object extends HTMLPurifier_HTMLModule
{
/**
* @type string
*/
public $name = 'Object';
/**
* @type bool
*/
public $safe = false;
/**
* @param HTMLPurifier_Config $config
*/
public function setup($config)
{
$this->addElement(
'object',
'Inline',
'Optional: #PCDATA | Flow | param',
'Common',
array(
'archive' => 'URI',
'classid' => 'URI',
'codebase' => 'URI',
'codetype' => 'Text',
'data' => 'URI',
'declare' => 'Bool#declare',
'height' => 'Length',
'name' => 'CDATA',
'standby' => 'Text',
'tabindex' => 'Number',
'type' => 'ContentType',
'width' => 'Length'
)
);
$this->addElement(
'param',
false,
'Empty',
null,
array(
'id' => 'ID',
'name*' => 'Text',
'type' => 'Text',
'value' => 'Text',
'valuetype' => 'Enum#data,ref,object'
)
);
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/HTMLModule/Legacy.php 0000644 00000013337 14716425661 0017046 0 ustar 00 addElement(
'basefont',
'Inline',
'Empty',
null,
array(
'color' => 'Color',
'face' => 'Text', // extremely broad, we should
'size' => 'Text', // tighten it
'id' => 'ID'
)
);
$this->addElement('center', 'Block', 'Flow', 'Common');
$this->addElement(
'dir',
'Block',
'Required: li',
'Common',
array(
'compact' => 'Bool#compact'
)
);
$this->addElement(
'font',
'Inline',
'Inline',
array('Core', 'I18N'),
array(
'color' => 'Color',
'face' => 'Text', // extremely broad, we should
'size' => 'Text', // tighten it
)
);
$this->addElement(
'menu',
'Block',
'Required: li',
'Common',
array(
'compact' => 'Bool#compact'
)
);
$s = $this->addElement('s', 'Inline', 'Inline', 'Common');
$s->formatting = true;
$strike = $this->addElement('strike', 'Inline', 'Inline', 'Common');
$strike->formatting = true;
$u = $this->addElement('u', 'Inline', 'Inline', 'Common');
$u->formatting = true;
// setup modifications to old elements
$align = 'Enum#left,right,center,justify';
$address = $this->addBlankElement('address');
$address->content_model = 'Inline | #PCDATA | p';
$address->content_model_type = 'optional';
$address->child = false;
$blockquote = $this->addBlankElement('blockquote');
$blockquote->content_model = 'Flow | #PCDATA';
$blockquote->content_model_type = 'optional';
$blockquote->child = false;
$br = $this->addBlankElement('br');
$br->attr['clear'] = 'Enum#left,all,right,none';
$caption = $this->addBlankElement('caption');
$caption->attr['align'] = 'Enum#top,bottom,left,right';
$div = $this->addBlankElement('div');
$div->attr['align'] = $align;
$dl = $this->addBlankElement('dl');
$dl->attr['compact'] = 'Bool#compact';
for ($i = 1; $i <= 6; $i++) {
$h = $this->addBlankElement("h$i");
$h->attr['align'] = $align;
}
$hr = $this->addBlankElement('hr');
$hr->attr['align'] = $align;
$hr->attr['noshade'] = 'Bool#noshade';
$hr->attr['size'] = 'Pixels';
$hr->attr['width'] = 'Length';
$img = $this->addBlankElement('img');
$img->attr['align'] = 'IAlign';
$img->attr['border'] = 'Pixels';
$img->attr['hspace'] = 'Pixels';
$img->attr['vspace'] = 'Pixels';
// figure out this integer business
$li = $this->addBlankElement('li');
$li->attr['value'] = new HTMLPurifier_AttrDef_Integer();
$li->attr['type'] = 'Enum#s:1,i,I,a,A,disc,square,circle';
$ol = $this->addBlankElement('ol');
$ol->attr['compact'] = 'Bool#compact';
$ol->attr['start'] = new HTMLPurifier_AttrDef_Integer();
$ol->attr['type'] = 'Enum#s:1,i,I,a,A';
$p = $this->addBlankElement('p');
$p->attr['align'] = $align;
$pre = $this->addBlankElement('pre');
$pre->attr['width'] = 'Number';
// script omitted
$table = $this->addBlankElement('table');
$table->attr['align'] = 'Enum#left,center,right';
$table->attr['bgcolor'] = 'Color';
$tr = $this->addBlankElement('tr');
$tr->attr['bgcolor'] = 'Color';
$th = $this->addBlankElement('th');
$th->attr['bgcolor'] = 'Color';
$th->attr['height'] = 'Length';
$th->attr['nowrap'] = 'Bool#nowrap';
$th->attr['width'] = 'Length';
$td = $this->addBlankElement('td');
$td->attr['bgcolor'] = 'Color';
$td->attr['height'] = 'Length';
$td->attr['nowrap'] = 'Bool#nowrap';
$td->attr['width'] = 'Length';
$ul = $this->addBlankElement('ul');
$ul->attr['compact'] = 'Bool#compact';
$ul->attr['type'] = 'Enum#square,disc,circle';
// "safe" modifications to "unsafe" elements
// WARNING: If you want to add support for an unsafe, legacy
// attribute, make a new TrustedLegacy module with the trusted
// bit set appropriately
$form = $this->addBlankElement('form');
$form->content_model = 'Flow | #PCDATA';
$form->content_model_type = 'optional';
$form->attr['target'] = 'FrameTarget';
$input = $this->addBlankElement('input');
$input->attr['align'] = 'IAlign';
$legend = $this->addBlankElement('legend');
$legend->attr['align'] = 'LAlign';
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/HTMLModule/Name.php 0000644 00000001235 14716425661 0016514 0 ustar 00 addBlankElement($name);
$element->attr['name'] = 'CDATA';
if (!$config->get('HTML.Attr.Name.UseCDATA')) {
$element->attr_transform_post[] = new HTMLPurifier_AttrTransform_NameSync();
}
}
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/HTMLModule/StyleAttribute.php 0000644 00000001414 14716425661 0020617 0 ustar 00 array('style' => false), // see constructor
'Core' => array(0 => array('Style'))
);
/**
* @param HTMLPurifier_Config $config
*/
public function setup($config)
{
$this->attr_collections['Style']['style'] = new HTMLPurifier_AttrDef_CSS();
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/HTMLModule/TargetBlank.php 0000644 00000001012 14716425661 0020023 0 ustar 00 addBlankElement('a');
$a->attr_transform_post[] = new HTMLPurifier_AttrTransform_TargetBlank();
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/Language/messages/en-x-testmini.php 0000644 00000000345 14716425661 0021756 0 ustar 00 'HTML Purifier XNone'
);
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/Language/messages/en-x-test.php 0000644 00000000253 14716425661 0021077 0 ustar 00 'HTML Purifier X'
);
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/Language/messages/en.php 0000644 00000007720 14716425661 0017663 0 ustar 00 'HTML Purifier',
// for unit testing purposes
'LanguageFactoryTest: Pizza' => 'Pizza',
'LanguageTest: List' => '$1',
'LanguageTest: Hash' => '$1.Keys; $1.Values',
'Item separator' => ', ',
'Item separator last' => ' and ', // non-Harvard style
'ErrorCollector: No errors' => 'No errors detected. However, because error reporting is still incomplete, there may have been errors that the error collector was not notified of; please inspect the output HTML carefully.',
'ErrorCollector: At line' => ' at line $line',
'ErrorCollector: Incidental errors' => 'Incidental errors',
'Lexer: Unclosed comment' => 'Unclosed comment',
'Lexer: Unescaped lt' => 'Unescaped less-than sign (<) should be <',
'Lexer: Missing gt' => 'Missing greater-than sign (>), previous less-than sign (<) should be escaped',
'Lexer: Missing attribute key' => 'Attribute declaration has no key',
'Lexer: Missing end quote' => 'Attribute declaration has no end quote',
'Lexer: Extracted body' => 'Removed document metadata tags',
'Strategy_RemoveForeignElements: Tag transform' => '<$1> element transformed into $CurrentToken.Serialized',
'Strategy_RemoveForeignElements: Missing required attribute' => '$CurrentToken.Compact element missing required attribute $1',
'Strategy_RemoveForeignElements: Foreign element to text' => 'Unrecognized $CurrentToken.Serialized tag converted to text',
'Strategy_RemoveForeignElements: Foreign element removed' => 'Unrecognized $CurrentToken.Serialized tag removed',
'Strategy_RemoveForeignElements: Comment removed' => 'Comment containing "$CurrentToken.Data" removed',
'Strategy_RemoveForeignElements: Foreign meta element removed' => 'Unrecognized $CurrentToken.Serialized meta tag and all descendants removed',
'Strategy_RemoveForeignElements: Token removed to end' => 'Tags and text starting from $1 element where removed to end',
'Strategy_RemoveForeignElements: Trailing hyphen in comment removed' => 'Trailing hyphen(s) in comment removed',
'Strategy_RemoveForeignElements: Hyphens in comment collapsed' => 'Double hyphens in comments are not allowed, and were collapsed into single hyphens',
'Strategy_MakeWellFormed: Unnecessary end tag removed' => 'Unnecessary $CurrentToken.Serialized tag removed',
'Strategy_MakeWellFormed: Unnecessary end tag to text' => 'Unnecessary $CurrentToken.Serialized tag converted to text',
'Strategy_MakeWellFormed: Tag auto closed' => '$1.Compact started on line $1.Line auto-closed by $CurrentToken.Compact',
'Strategy_MakeWellFormed: Tag carryover' => '$1.Compact started on line $1.Line auto-continued into $CurrentToken.Compact',
'Strategy_MakeWellFormed: Stray end tag removed' => 'Stray $CurrentToken.Serialized tag removed',
'Strategy_MakeWellFormed: Stray end tag to text' => 'Stray $CurrentToken.Serialized tag converted to text',
'Strategy_MakeWellFormed: Tag closed by element end' => '$1.Compact tag started on line $1.Line closed by end of $CurrentToken.Serialized',
'Strategy_MakeWellFormed: Tag closed by document end' => '$1.Compact tag started on line $1.Line closed by end of document',
'Strategy_FixNesting: Node removed' => '$CurrentToken.Compact node removed',
'Strategy_FixNesting: Node excluded' => '$CurrentToken.Compact node removed due to descendant exclusion by ancestor element',
'Strategy_FixNesting: Node reorganized' => 'Contents of $CurrentToken.Compact node reorganized to enforce its content model',
'Strategy_FixNesting: Node contents removed' => 'Contents of $CurrentToken.Compact node removed',
'AttrValidator: Attributes transformed' => 'Attributes on $CurrentToken.Compact transformed from $1.Keys to $2.Keys',
'AttrValidator: Attribute removed' => '$CurrentAttr.Name attribute on $CurrentToken.Compact removed',
);
$errorNames = array(
E_ERROR => 'Error',
E_WARNING => 'Warning',
E_NOTICE => 'Notice'
);
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/Language/classes/en-x-test.php 0000644 00000000211 14716425661 0020717 0 ustar 00 array(
* 'Directive' => new stdClass(),
* )
* )
*
* The stdClass may have the following properties:
*
* - If isAlias isn't set:
* - type: Integer type of directive, see HTMLPurifier_VarParser for definitions
* - allow_null: If set, this directive allows null values
* - aliases: If set, an associative array of value aliases to real values
* - allowed: If set, a lookup array of allowed (string) values
* - If isAlias is set:
* - namespace: Namespace this directive aliases to
* - name: Directive name this directive aliases to
*
* In certain degenerate cases, stdClass will actually be an integer. In
* that case, the value is equivalent to an stdClass with the type
* property set to the integer. If the integer is negative, type is
* equal to the absolute value of integer, and allow_null is true.
*
* This class is friendly with HTMLPurifier_Config. If you need introspection
* about the schema, you're better of using the ConfigSchema_Interchange,
* which uses more memory but has much richer information.
* @type array
*/
public $info = array();
/**
* Application-wide singleton
* @type HTMLPurifier_ConfigSchema
*/
protected static $singleton;
public function __construct()
{
$this->defaultPlist = new HTMLPurifier_PropertyList();
}
/**
* Unserializes the default ConfigSchema.
* @return HTMLPurifier_ConfigSchema
*/
public static function makeFromSerial()
{
$contents = file_get_contents(HTMLPURIFIER_PREFIX . '/HTMLPurifier/ConfigSchema/schema.ser');
$r = unserialize($contents);
if (!$r) {
$hash = sha1($contents);
trigger_error("Unserialization of configuration schema failed, sha1 of file was $hash", E_USER_ERROR);
}
return $r;
}
/**
* Retrieves an instance of the application-wide configuration definition.
* @param HTMLPurifier_ConfigSchema $prototype
* @return HTMLPurifier_ConfigSchema
*/
public static function instance($prototype = null)
{
if ($prototype !== null) {
HTMLPurifier_ConfigSchema::$singleton = $prototype;
} elseif (HTMLPurifier_ConfigSchema::$singleton === null || $prototype === true) {
HTMLPurifier_ConfigSchema::$singleton = HTMLPurifier_ConfigSchema::makeFromSerial();
}
return HTMLPurifier_ConfigSchema::$singleton;
}
/**
* Defines a directive for configuration
* @warning Will fail of directive's namespace is defined.
* @warning This method's signature is slightly different from the legacy
* define() static method! Beware!
* @param string $key Name of directive
* @param mixed $default Default value of directive
* @param string $type Allowed type of the directive. See
* HTMLPurifier_DirectiveDef::$type for allowed values
* @param bool $allow_null Whether or not to allow null values
*/
public function add($key, $default, $type, $allow_null)
{
$obj = new stdClass();
$obj->type = is_int($type) ? $type : HTMLPurifier_VarParser::$types[$type];
if ($allow_null) {
$obj->allow_null = true;
}
$this->info[$key] = $obj;
$this->defaults[$key] = $default;
$this->defaultPlist->set($key, $default);
}
/**
* Defines a directive value alias.
*
* Directive value aliases are convenient for developers because it lets
* them set a directive to several values and get the same result.
* @param string $key Name of Directive
* @param array $aliases Hash of aliased values to the real alias
*/
public function addValueAliases($key, $aliases)
{
if (!isset($this->info[$key]->aliases)) {
$this->info[$key]->aliases = array();
}
foreach ($aliases as $alias => $real) {
$this->info[$key]->aliases[$alias] = $real;
}
}
/**
* Defines a set of allowed values for a directive.
* @warning This is slightly different from the corresponding static
* method definition.
* @param string $key Name of directive
* @param array $allowed Lookup array of allowed values
*/
public function addAllowedValues($key, $allowed)
{
$this->info[$key]->allowed = $allowed;
}
/**
* Defines a directive alias for backwards compatibility
* @param string $key Directive that will be aliased
* @param string $new_key Directive that the alias will be to
*/
public function addAlias($key, $new_key)
{
$obj = new stdClass;
$obj->key = $new_key;
$obj->isAlias = true;
$this->info[$key] = $obj;
}
/**
* Replaces any stdClass that only has the type property with type integer.
*/
public function postProcess()
{
foreach ($this->info as $key => $v) {
if (count((array) $v) == 1) {
$this->info[$key] = $v->type;
} elseif (count((array) $v) == 2 && isset($v->allow_null)) {
$this->info[$key] = -$v->type;
}
}
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/Token.php 0000644 00000004261 14716425661 0015004 0 ustar 00 line = $l;
$this->col = $c;
}
/**
* Convenience function for DirectLex settings line/col position.
* @param int $l
* @param int $c
*/
public function rawPosition($l, $c)
{
if ($c === -1) {
$l++;
}
$this->line = $l;
$this->col = $c;
}
/**
* Converts a token into its corresponding node.
*/
abstract public function toNode();
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/HTMLDefinition.php 0000644 00000042523 14716425661 0016504 0 ustar 00 getAnonymousModule();
if (!isset($module->info[$element_name])) {
$element = $module->addBlankElement($element_name);
} else {
$element = $module->info[$element_name];
}
$element->attr[$attr_name] = $def;
}
/**
* Adds a custom element to your HTML definition
* @see HTMLPurifier_HTMLModule::addElement() for detailed
* parameter and return value descriptions.
*/
public function addElement($element_name, $type, $contents, $attr_collections, $attributes = array())
{
$module = $this->getAnonymousModule();
// assume that if the user is calling this, the element
// is safe. This may not be a good idea
$element = $module->addElement($element_name, $type, $contents, $attr_collections, $attributes);
return $element;
}
/**
* Adds a blank element to your HTML definition, for overriding
* existing behavior
* @param string $element_name
* @return HTMLPurifier_ElementDef
* @see HTMLPurifier_HTMLModule::addBlankElement() for detailed
* parameter and return value descriptions.
*/
public function addBlankElement($element_name)
{
$module = $this->getAnonymousModule();
$element = $module->addBlankElement($element_name);
return $element;
}
/**
* Retrieves a reference to the anonymous module, so you can
* bust out advanced features without having to make your own
* module.
* @return HTMLPurifier_HTMLModule
*/
public function getAnonymousModule()
{
if (!$this->_anonModule) {
$this->_anonModule = new HTMLPurifier_HTMLModule();
$this->_anonModule->name = 'Anonymous';
}
return $this->_anonModule;
}
private $_anonModule = null;
// PUBLIC BUT INTERNAL VARIABLES --------------------------------------
/**
* @type string
*/
public $type = 'HTML';
/**
* @type HTMLPurifier_HTMLModuleManager
*/
public $manager;
/**
* Performs low-cost, preliminary initialization.
*/
public function __construct()
{
$this->manager = new HTMLPurifier_HTMLModuleManager();
}
/**
* @param HTMLPurifier_Config $config
*/
protected function doSetup($config)
{
$this->processModules($config);
$this->setupConfigStuff($config);
unset($this->manager);
// cleanup some of the element definitions
foreach ($this->info as $k => $v) {
unset($this->info[$k]->content_model);
unset($this->info[$k]->content_model_type);
}
}
/**
* Extract out the information from the manager
* @param HTMLPurifier_Config $config
*/
protected function processModules($config)
{
if ($this->_anonModule) {
// for user specific changes
// this is late-loaded so we don't have to deal with PHP4
// reference wonky-ness
$this->manager->addModule($this->_anonModule);
unset($this->_anonModule);
}
$this->manager->setup($config);
$this->doctype = $this->manager->doctype;
foreach ($this->manager->modules as $module) {
foreach ($module->info_tag_transform as $k => $v) {
if ($v === false) {
unset($this->info_tag_transform[$k]);
} else {
$this->info_tag_transform[$k] = $v;
}
}
foreach ($module->info_attr_transform_pre as $k => $v) {
if ($v === false) {
unset($this->info_attr_transform_pre[$k]);
} else {
$this->info_attr_transform_pre[$k] = $v;
}
}
foreach ($module->info_attr_transform_post as $k => $v) {
if ($v === false) {
unset($this->info_attr_transform_post[$k]);
} else {
$this->info_attr_transform_post[$k] = $v;
}
}
foreach ($module->info_injector as $k => $v) {
if ($v === false) {
unset($this->info_injector[$k]);
} else {
$this->info_injector[$k] = $v;
}
}
}
$this->info = $this->manager->getElements();
$this->info_content_sets = $this->manager->contentSets->lookup;
}
/**
* Sets up stuff based on config. We need a better way of doing this.
* @param HTMLPurifier_Config $config
*/
protected function setupConfigStuff($config)
{
$block_wrapper = $config->get('HTML.BlockWrapper');
if (isset($this->info_content_sets['Block'][$block_wrapper])) {
$this->info_block_wrapper = $block_wrapper;
} else {
trigger_error(
'Cannot use non-block element as block wrapper',
E_USER_ERROR
);
}
$parent = $config->get('HTML.Parent');
$def = $this->manager->getElement($parent, true);
if ($def) {
$this->info_parent = $parent;
$this->info_parent_def = $def;
} else {
trigger_error(
'Cannot use unrecognized element as parent',
E_USER_ERROR
);
$this->info_parent_def = $this->manager->getElement($this->info_parent, true);
}
// support template text
$support = "(for information on implementing this, see the support forums) ";
// setup allowed elements -----------------------------------------
$allowed_elements = $config->get('HTML.AllowedElements');
$allowed_attributes = $config->get('HTML.AllowedAttributes'); // retrieve early
if (!is_array($allowed_elements) && !is_array($allowed_attributes)) {
$allowed = $config->get('HTML.Allowed');
if (is_string($allowed)) {
list($allowed_elements, $allowed_attributes) = $this->parseTinyMCEAllowedList($allowed);
}
}
if (is_array($allowed_elements)) {
foreach ($this->info as $name => $d) {
if (!isset($allowed_elements[$name])) {
unset($this->info[$name]);
}
unset($allowed_elements[$name]);
}
// emit errors
foreach ($allowed_elements as $element => $d) {
$element = htmlspecialchars($element); // PHP doesn't escape errors, be careful!
trigger_error("Element '$element' is not supported $support", E_USER_WARNING);
}
}
// setup allowed attributes ---------------------------------------
$allowed_attributes_mutable = $allowed_attributes; // by copy!
if (is_array($allowed_attributes)) {
// This actually doesn't do anything, since we went away from
// global attributes. It's possible that userland code uses
// it, but HTMLModuleManager doesn't!
foreach ($this->info_global_attr as $attr => $x) {
$keys = array($attr, "*@$attr", "*.$attr");
$delete = true;
foreach ($keys as $key) {
if ($delete && isset($allowed_attributes[$key])) {
$delete = false;
}
if (isset($allowed_attributes_mutable[$key])) {
unset($allowed_attributes_mutable[$key]);
}
}
if ($delete) {
unset($this->info_global_attr[$attr]);
}
}
foreach ($this->info as $tag => $info) {
foreach ($info->attr as $attr => $x) {
$keys = array("$tag@$attr", $attr, "*@$attr", "$tag.$attr", "*.$attr");
$delete = true;
foreach ($keys as $key) {
if ($delete && isset($allowed_attributes[$key])) {
$delete = false;
}
if (isset($allowed_attributes_mutable[$key])) {
unset($allowed_attributes_mutable[$key]);
}
}
if ($delete) {
if ($this->info[$tag]->attr[$attr]->required) {
trigger_error(
"Required attribute '$attr' in element '$tag' " .
"was not allowed, which means '$tag' will not be allowed either",
E_USER_WARNING
);
}
unset($this->info[$tag]->attr[$attr]);
}
}
}
// emit errors
foreach ($allowed_attributes_mutable as $elattr => $d) {
$bits = preg_split('/[.@]/', $elattr, 2);
$c = count($bits);
switch ($c) {
case 2:
if ($bits[0] !== '*') {
$element = htmlspecialchars($bits[0]);
$attribute = htmlspecialchars($bits[1]);
if (!isset($this->info[$element])) {
trigger_error(
"Cannot allow attribute '$attribute' if element " .
"'$element' is not allowed/supported $support"
);
} else {
trigger_error(
"Attribute '$attribute' in element '$element' not supported $support",
E_USER_WARNING
);
}
break;
}
// otherwise fall through
case 1:
$attribute = htmlspecialchars($bits[0]);
trigger_error(
"Global attribute '$attribute' is not ".
"supported in any elements $support",
E_USER_WARNING
);
break;
}
}
}
// setup forbidden elements ---------------------------------------
$forbidden_elements = $config->get('HTML.ForbiddenElements');
$forbidden_attributes = $config->get('HTML.ForbiddenAttributes');
foreach ($this->info as $tag => $info) {
if (isset($forbidden_elements[$tag])) {
unset($this->info[$tag]);
continue;
}
foreach ($info->attr as $attr => $x) {
if (isset($forbidden_attributes["$tag@$attr"]) ||
isset($forbidden_attributes["*@$attr"]) ||
isset($forbidden_attributes[$attr])
) {
unset($this->info[$tag]->attr[$attr]);
continue;
} elseif (isset($forbidden_attributes["$tag.$attr"])) { // this segment might get removed eventually
// $tag.$attr are not user supplied, so no worries!
trigger_error(
"Error with $tag.$attr: tag.attr syntax not supported for " .
"HTML.ForbiddenAttributes; use tag@attr instead",
E_USER_WARNING
);
}
}
}
foreach ($forbidden_attributes as $key => $v) {
if (strlen($key) < 2) {
continue;
}
if ($key[0] != '*') {
continue;
}
if ($key[1] == '.') {
trigger_error(
"Error with $key: *.attr syntax not supported for HTML.ForbiddenAttributes; use attr instead",
E_USER_WARNING
);
}
}
// setup injectors -----------------------------------------------------
foreach ($this->info_injector as $i => $injector) {
if ($injector->checkNeeded($config) !== false) {
// remove injector that does not have it's required
// elements/attributes present, and is thus not needed.
unset($this->info_injector[$i]);
}
}
}
/**
* Parses a TinyMCE-flavored Allowed Elements and Attributes list into
* separate lists for processing. Format is element[attr1|attr2],element2...
* @warning Although it's largely drawn from TinyMCE's implementation,
* it is different, and you'll probably have to modify your lists
* @param array $list String list to parse
* @return array
* @todo Give this its own class, probably static interface
*/
public function parseTinyMCEAllowedList($list)
{
$list = str_replace(array(' ', "\t"), '', $list);
$elements = array();
$attributes = array();
$chunks = preg_split('/(,|[\n\r]+)/', $list);
foreach ($chunks as $chunk) {
if (empty($chunk)) {
continue;
}
// remove TinyMCE element control characters
if (!strpos($chunk, '[')) {
$element = $chunk;
$attr = false;
} else {
list($element, $attr) = explode('[', $chunk);
}
if ($element !== '*') {
$elements[$element] = true;
}
if (!$attr) {
continue;
}
$attr = substr($attr, 0, strlen($attr) - 1); // remove trailing ]
$attr = explode('|', $attr);
foreach ($attr as $key) {
$attributes["$element.$key"] = true;
}
}
return array($elements, $attributes);
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ErrorCollector.php 0000644 00000016711 14716425661 0016667 0 ustar 00 locale =& $context->get('Locale');
$this->context = $context;
$this->_current =& $this->_stacks[0];
$this->errors =& $this->_stacks[0];
}
/**
* Sends an error message to the collector for later use
* @param int $severity Error severity, PHP error style (don't use E_USER_)
* @param string $msg Error message text
*/
public function send($severity, $msg)
{
$args = array();
if (func_num_args() > 2) {
$args = func_get_args();
array_shift($args);
unset($args[0]);
}
$token = $this->context->get('CurrentToken', true);
$line = $token ? $token->line : $this->context->get('CurrentLine', true);
$col = $token ? $token->col : $this->context->get('CurrentCol', true);
$attr = $this->context->get('CurrentAttr', true);
// perform special substitutions, also add custom parameters
$subst = array();
if (!is_null($token)) {
$args['CurrentToken'] = $token;
}
if (!is_null($attr)) {
$subst['$CurrentAttr.Name'] = $attr;
if (isset($token->attr[$attr])) {
$subst['$CurrentAttr.Value'] = $token->attr[$attr];
}
}
if (empty($args)) {
$msg = $this->locale->getMessage($msg);
} else {
$msg = $this->locale->formatMessage($msg, $args);
}
if (!empty($subst)) {
$msg = strtr($msg, $subst);
}
// (numerically indexed)
$error = array(
self::LINENO => $line,
self::SEVERITY => $severity,
self::MESSAGE => $msg,
self::CHILDREN => array()
);
$this->_current[] = $error;
// NEW CODE BELOW ...
// Top-level errors are either:
// TOKEN type, if $value is set appropriately, or
// "syntax" type, if $value is null
$new_struct = new HTMLPurifier_ErrorStruct();
$new_struct->type = HTMLPurifier_ErrorStruct::TOKEN;
if ($token) {
$new_struct->value = clone $token;
}
if (is_int($line) && is_int($col)) {
if (isset($this->lines[$line][$col])) {
$struct = $this->lines[$line][$col];
} else {
$struct = $this->lines[$line][$col] = $new_struct;
}
// These ksorts may present a performance problem
ksort($this->lines[$line], SORT_NUMERIC);
} else {
if (isset($this->lines[-1])) {
$struct = $this->lines[-1];
} else {
$struct = $this->lines[-1] = $new_struct;
}
}
ksort($this->lines, SORT_NUMERIC);
// Now, check if we need to operate on a lower structure
if (!empty($attr)) {
$struct = $struct->getChild(HTMLPurifier_ErrorStruct::ATTR, $attr);
if (!$struct->value) {
$struct->value = array($attr, 'PUT VALUE HERE');
}
}
if (!empty($cssprop)) {
$struct = $struct->getChild(HTMLPurifier_ErrorStruct::CSSPROP, $cssprop);
if (!$struct->value) {
// if we tokenize CSS this might be a little more difficult to do
$struct->value = array($cssprop, 'PUT VALUE HERE');
}
}
// Ok, structs are all setup, now time to register the error
$struct->addError($severity, $msg);
}
/**
* Retrieves raw error data for custom formatter to use
*/
public function getRaw()
{
return $this->errors;
}
/**
* Default HTML formatting implementation for error messages
* @param HTMLPurifier_Config $config Configuration, vital for HTML output nature
* @param array $errors Errors array to display; used for recursion.
* @return string
*/
public function getHTMLFormatted($config, $errors = null)
{
$ret = array();
$this->generator = new HTMLPurifier_Generator($config, $this->context);
if ($errors === null) {
$errors = $this->errors;
}
// 'At line' message needs to be removed
// generation code for new structure goes here. It needs to be recursive.
foreach ($this->lines as $line => $col_array) {
if ($line == -1) {
continue;
}
foreach ($col_array as $col => $struct) {
$this->_renderStruct($ret, $struct, $line, $col);
}
}
if (isset($this->lines[-1])) {
$this->_renderStruct($ret, $this->lines[-1]);
}
if (empty($errors)) {
return '' . $this->locale->getMessage('ErrorCollector: No errors') . '
';
} else {
return '- ' . implode('
- ', $ret) . '
';
}
}
private function _renderStruct(&$ret, $struct, $line = null, $col = null)
{
$stack = array($struct);
$context_stack = array(array());
while ($current = array_pop($stack)) {
$context = array_pop($context_stack);
foreach ($current->errors as $error) {
list($severity, $msg) = $error;
$string = '';
$string .= '';
// W3C uses an icon to indicate the severity of the error.
$error = $this->locale->getErrorName($severity);
$string .= "$error ";
if (!is_null($line) && !is_null($col)) {
$string .= "Line $line, Column $col: ";
} else {
$string .= 'End of Document: ';
}
$string .= '' . $this->generator->escape($msg) . ' ';
$string .= '
';
// Here, have a marker for the character on the column appropriate.
// Be sure to clip extremely long lines.
//$string .= '';
//$string .= '';
//$string .= '
';
$ret[] = $string;
}
foreach ($current->children as $array) {
$context[] = $current;
$stack = array_merge($stack, array_reverse($array, true));
for ($i = count($array); $i > 0; $i--) {
$context_stack[] = $context;
}
}
}
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/Bootstrap.php 0000644 00000011005 14716425661 0015673 0 ustar 00
if (!defined('PHP_EOL')) {
switch (strtoupper(substr(PHP_OS, 0, 3))) {
case 'WIN':
define('PHP_EOL', "\r\n");
break;
case 'DAR':
define('PHP_EOL', "\r");
break;
default:
define('PHP_EOL', "\n");
}
}
/**
* Bootstrap class that contains meta-functionality for HTML Purifier such as
* the autoload function.
*
* @note
* This class may be used without any other files from HTML Purifier.
*/
class HTMLPurifier_Bootstrap
{
/**
* Autoload function for HTML Purifier
* @param string $class Class to load
* @return bool
*/
public static function autoload($class)
{
$file = HTMLPurifier_Bootstrap::getPath($class);
if (!$file) {
return false;
}
// Technically speaking, it should be ok and more efficient to
// just do 'require', but Antonio Parraga reports that with
// Zend extensions such as Zend debugger and APC, this invariant
// may be broken. Since we have efficient alternatives, pay
// the cost here and avoid the bug.
require_once HTMLPURIFIER_PREFIX . '/' . $file;
return true;
}
/**
* Returns the path for a specific class.
* @param string $class Class path to get
* @return string
*/
public static function getPath($class)
{
if (strncmp('HTMLPurifier', $class, 12) !== 0) {
return false;
}
// Custom implementations
if (strncmp('HTMLPurifier_Language_', $class, 22) === 0) {
$code = str_replace('_', '-', substr($class, 22));
$file = 'HTMLPurifier/Language/classes/' . $code . '.php';
} else {
$file = str_replace('_', '/', $class) . '.php';
}
if (!file_exists(HTMLPURIFIER_PREFIX . '/' . $file)) {
return false;
}
return $file;
}
/**
* "Pre-registers" our autoloader on the SPL stack.
*/
public static function registerAutoload()
{
$autoload = array('HTMLPurifier_Bootstrap', 'autoload');
if (($funcs = spl_autoload_functions()) === false) {
spl_autoload_register($autoload);
} elseif (function_exists('spl_autoload_unregister')) {
if (version_compare(PHP_VERSION, '5.3.0', '>=')) {
// prepend flag exists, no need for shenanigans
spl_autoload_register($autoload, true, true);
} else {
$buggy = version_compare(PHP_VERSION, '5.2.11', '<');
$compat = version_compare(PHP_VERSION, '5.1.2', '<=') &&
version_compare(PHP_VERSION, '5.1.0', '>=');
foreach ($funcs as $func) {
if ($buggy && is_array($func)) {
// :TRICKY: There are some compatibility issues and some
// places where we need to error out
$reflector = new ReflectionMethod($func[0], $func[1]);
if (!$reflector->isStatic()) {
throw new Exception(
'HTML Purifier autoloader registrar is not compatible
with non-static object methods due to PHP Bug #44144;
Please do not use HTMLPurifier.autoload.php (or any
file that includes this file); instead, place the code:
spl_autoload_register(array(\'HTMLPurifier_Bootstrap\', \'autoload\'))
after your own autoloaders.'
);
}
// Suprisingly, spl_autoload_register supports the
// Class::staticMethod callback format, although call_user_func doesn't
if ($compat) {
$func = implode('::', $func);
}
}
spl_autoload_unregister($func);
}
spl_autoload_register($autoload);
foreach ($funcs as $func) {
spl_autoload_register($func);
}
}
}
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/PropertyListIterator.php 0000644 00000001541 14716425661 0020114 0 ustar 00 l = strlen($filter);
$this->filter = $filter;
}
/**
* @return bool
*/
public function accept()
{
$key = $this->getInnerIterator()->key();
if (strncmp($key, $this->filter, $this->l) !== 0) {
return false;
}
return true;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/Injector/SafeObject.php 0000644 00000007557 14716425661 0017521 0 ustar 00 'never',
'allowNetworking' => 'internal',
);
/**
* These are all lower-case keys.
* @type array
*/
protected $allowedParam = array(
'wmode' => true,
'movie' => true,
'flashvars' => true,
'src' => true,
'allowfullscreen' => true, // if omitted, assume to be 'false'
);
/**
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return void
*/
public function prepare($config, $context)
{
parent::prepare($config, $context);
}
/**
* @param HTMLPurifier_Token $token
*/
public function handleElement(&$token)
{
if ($token->name == 'object') {
$this->objectStack[] = $token;
$this->paramStack[] = array();
$new = array($token);
foreach ($this->addParam as $name => $value) {
$new[] = new HTMLPurifier_Token_Empty('param', array('name' => $name, 'value' => $value));
}
$token = $new;
} elseif ($token->name == 'param') {
$nest = count($this->currentNesting) - 1;
if ($nest >= 0 && $this->currentNesting[$nest]->name === 'object') {
$i = count($this->objectStack) - 1;
if (!isset($token->attr['name'])) {
$token = false;
return;
}
$n = $token->attr['name'];
// We need this fix because YouTube doesn't supply a data
// attribute, which we need if a type is specified. This is
// *very* Flash specific.
if (!isset($this->objectStack[$i]->attr['data']) &&
($token->attr['name'] == 'movie' || $token->attr['name'] == 'src')
) {
$this->objectStack[$i]->attr['data'] = $token->attr['value'];
}
// Check if the parameter is the correct value but has not
// already been added
if (!isset($this->paramStack[$i][$n]) &&
isset($this->addParam[$n]) &&
$token->attr['name'] === $this->addParam[$n]) {
// keep token, and add to param stack
$this->paramStack[$i][$n] = true;
} elseif (isset($this->allowedParam[strtolower($n)])) {
// keep token, don't do anything to it
// (could possibly check for duplicates here)
// Note: In principle, parameters should be case sensitive.
// But it seems they are not really; so accept any case.
} else {
$token = false;
}
} else {
// not directly inside an object, DENY!
$token = false;
}
}
}
public function handleEnd(&$token)
{
// This is the WRONG way of handling the object and param stacks;
// we should be inserting them directly on the relevant object tokens
// so that the global stack handling handles it.
if ($token->name == 'object') {
array_pop($this->objectStack);
array_pop($this->paramStack);
}
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/Injector/RemoveSpansWithoutAttributes.php 0000644 00000003746 14716425661 0023405 0 ustar 00 attrValidator = new HTMLPurifier_AttrValidator();
$this->config = $config;
$this->context = $context;
return parent::prepare($config, $context);
}
/**
* @param HTMLPurifier_Token $token
*/
public function handleElement(&$token)
{
if ($token->name !== 'span' || !$token instanceof HTMLPurifier_Token_Start) {
return;
}
// We need to validate the attributes now since this doesn't normally
// happen until after MakeWellFormed. If all the attributes are removed
// the span needs to be removed too.
$this->attrValidator->validateToken($token, $this->config, $this->context);
$token->armor['ValidateAttributes'] = true;
if (!empty($token->attr)) {
return;
}
$nesting = 0;
while ($this->forwardUntilEndToken($i, $current, $nesting)) {
}
if ($current instanceof HTMLPurifier_Token_End && $current->name === 'span') {
// Mark closing span tag for deletion
$current->markForDeletion = true;
// Delete open span tag
$token = false;
}
}
/**
* @param HTMLPurifier_Token $token
*/
public function handleEnd(&$token)
{
if ($token->markForDeletion) {
$token = false;
}
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/Injector/Linkify.php 0000644 00000003753 14716425661 0017113 0 ustar 00 array('href'));
/**
* @param HTMLPurifier_Token $token
*/
public function handleText(&$token)
{
if (!$this->allowsElement('a')) {
return;
}
if (strpos($token->data, '://') === false) {
// our really quick heuristic failed, abort
// this may not work so well if we want to match things like
// "google.com", but then again, most people don't
return;
}
// there is/are URL(s). Let's split the string.
// We use this regex:
// https://gist.github.com/gruber/249502
// but with @cscott's backtracking fix and also
// the Unicode characters un-Unicodified.
$bits = preg_split(
'/\\b((?:[a-z][\\w\\-]+:(?:\\/{1,3}|[a-z0-9%])|www\\d{0,3}[.]|[a-z0-9.\\-]+[.][a-z]{2,4}\\/)(?:[^\\s()<>]|\\((?:[^\\s()<>]|(?:\\([^\\s()<>]+\\)))*\\))+(?:\\((?:[^\\s()<>]|(?:\\([^\\s()<>]+\\)))*\\)|[^\\s`!()\\[\\]{};:\'".,<>?\x{00ab}\x{00bb}\x{201c}\x{201d}\x{2018}\x{2019}]))/iu',
$token->data, -1, PREG_SPLIT_DELIM_CAPTURE);
$token = array();
// $i = index
// $c = count
// $l = is link
for ($i = 0, $c = count($bits), $l = false; $i < $c; $i++, $l = !$l) {
if (!$l) {
if ($bits[$i] === '') {
continue;
}
$token[] = new HTMLPurifier_Token_Text($bits[$i]);
} else {
$token[] = new HTMLPurifier_Token_Start('a', array('href' => $bits[$i]));
$token[] = new HTMLPurifier_Token_Text($bits[$i]);
$token[] = new HTMLPurifier_Token_End('a');
}
}
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/Injector/error_log; 0000644 00000203416 14716425661 0017003 0 ustar 00 [16-Sep-2023 02:13:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/SafeObject.php on line 7
[21-Sep-2023 10:55:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveEmpty.php on line 3
[24-Sep-2023 00:38:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/AutoParagraph.php on line 9
[28-Sep-2023 18:26:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/DisplayLinkURI.php on line 6
[16-Nov-2023 04:12:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/PurifierLinkify.php on line 7
[18-Nov-2023 06:29:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/Linkify.php on line 6
[22-Nov-2023 03:54:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveSpansWithoutAttributes.php on line 6
[28-Nov-2023 08:07:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveEmpty.php on line 3
[28-Nov-2023 08:07:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/Linkify.php on line 6
[28-Nov-2023 08:07:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/DisplayLinkURI.php on line 6
[28-Nov-2023 08:07:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/AutoParagraph.php on line 9
[28-Nov-2023 08:08:02 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/SafeObject.php on line 7
[28-Nov-2023 08:08:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveSpansWithoutAttributes.php on line 6
[28-Nov-2023 08:08:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/PurifierLinkify.php on line 7
[29-Nov-2023 00:50:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/Linkify.php on line 6
[29-Nov-2023 00:50:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/AutoParagraph.php on line 9
[29-Nov-2023 00:51:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveEmpty.php on line 3
[29-Nov-2023 00:51:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/SafeObject.php on line 7
[29-Nov-2023 00:51:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/DisplayLinkURI.php on line 6
[29-Nov-2023 00:51:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveSpansWithoutAttributes.php on line 6
[29-Nov-2023 00:51:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/PurifierLinkify.php on line 7
[30-Nov-2023 11:55:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/AutoParagraph.php on line 9
[30-Nov-2023 13:16:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveEmpty.php on line 3
[30-Nov-2023 13:16:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/Linkify.php on line 6
[30-Nov-2023 13:16:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/AutoParagraph.php on line 9
[30-Nov-2023 13:16:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/SafeObject.php on line 7
[30-Nov-2023 13:16:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveSpansWithoutAttributes.php on line 6
[30-Nov-2023 13:16:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/PurifierLinkify.php on line 7
[30-Nov-2023 13:16:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/DisplayLinkURI.php on line 6
[30-Nov-2023 18:22:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/SafeObject.php on line 7
[01-Dec-2023 20:19:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveEmpty.php on line 3
[01-Dec-2023 20:19:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveSpansWithoutAttributes.php on line 6
[01-Dec-2023 20:19:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/DisplayLinkURI.php on line 6
[01-Dec-2023 20:19:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/SafeObject.php on line 7
[01-Dec-2023 20:19:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/Linkify.php on line 6
[01-Dec-2023 20:19:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/PurifierLinkify.php on line 7
[01-Dec-2023 20:19:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/AutoParagraph.php on line 9
[07-Dec-2023 13:08:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/DisplayLinkURI.php on line 6
[01-Jan-2024 17:15:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/PurifierLinkify.php on line 7
[04-Jan-2024 11:02:02 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveEmpty.php on line 3
[05-Jan-2024 17:10:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/AutoParagraph.php on line 9
[11-Jan-2024 16:53:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveSpansWithoutAttributes.php on line 6
[14-Jan-2024 22:47:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/Linkify.php on line 6
[14-Jan-2024 23:04:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/DisplayLinkURI.php on line 6
[24-Jan-2024 09:45:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/SafeObject.php on line 7
[15-Mar-2024 04:57:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/AutoParagraph.php on line 9
[15-Mar-2024 08:42:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/Linkify.php on line 6
[15-Mar-2024 23:31:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/PurifierLinkify.php on line 7
[16-Mar-2024 21:13:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveEmpty.php on line 3
[19-Mar-2024 20:10:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/AutoParagraph.php on line 9
[01-Apr-2024 14:02:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/SafeObject.php on line 7
[04-Apr-2024 23:46:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/DisplayLinkURI.php on line 6
[04-Apr-2024 23:58:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveEmpty.php on line 3
[05-Apr-2024 06:55:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/Linkify.php on line 6
[05-Apr-2024 21:24:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveSpansWithoutAttributes.php on line 6
[07-Apr-2024 03:57:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/DisplayLinkURI.php on line 6
[14-Apr-2024 05:15:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/SafeObject.php on line 7
[19-Apr-2024 12:12:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveSpansWithoutAttributes.php on line 6
[03-May-2024 01:50:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/AutoParagraph.php on line 9
[03-May-2024 06:20:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/DisplayLinkURI.php on line 6
[03-May-2024 08:49:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/Linkify.php on line 6
[03-May-2024 09:16:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveSpansWithoutAttributes.php on line 6
[03-May-2024 14:06:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveEmpty.php on line 3
[03-May-2024 14:44:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/SafeObject.php on line 7
[03-May-2024 16:35:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/PurifierLinkify.php on line 7
[05-May-2024 01:09:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveEmpty.php on line 3
[05-May-2024 01:09:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/Linkify.php on line 6
[05-May-2024 01:09:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/AutoParagraph.php on line 9
[05-May-2024 01:31:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/SafeObject.php on line 7
[05-May-2024 01:39:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/DisplayLinkURI.php on line 6
[05-May-2024 01:59:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/PurifierLinkify.php on line 7
[05-May-2024 02:17:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveSpansWithoutAttributes.php on line 6
[05-May-2024 11:05:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveEmpty.php on line 3
[05-May-2024 11:05:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/Linkify.php on line 6
[05-May-2024 11:05:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/AutoParagraph.php on line 9
[05-May-2024 11:27:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/SafeObject.php on line 7
[05-May-2024 11:35:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/DisplayLinkURI.php on line 6
[05-May-2024 11:54:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/PurifierLinkify.php on line 7
[05-May-2024 12:13:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveSpansWithoutAttributes.php on line 6
[05-May-2024 20:30:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveEmpty.php on line 3
[05-May-2024 20:30:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/Linkify.php on line 6
[05-May-2024 20:30:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/AutoParagraph.php on line 9
[05-May-2024 20:52:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/SafeObject.php on line 7
[05-May-2024 21:00:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/DisplayLinkURI.php on line 6
[05-May-2024 21:19:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/PurifierLinkify.php on line 7
[05-May-2024 21:37:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveSpansWithoutAttributes.php on line 6
[12-May-2024 06:07:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/PurifierLinkify.php on line 7
[13-May-2024 11:22:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/AutoParagraph.php on line 9
[13-May-2024 11:42:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/SafeObject.php on line 7
[13-May-2024 11:57:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveEmpty.php on line 3
[13-May-2024 13:15:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/Linkify.php on line 6
[13-May-2024 13:15:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/DisplayLinkURI.php on line 6
[13-May-2024 14:27:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/PurifierLinkify.php on line 7
[14-May-2024 10:39:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/AutoParagraph.php on line 9
[14-May-2024 18:15:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveEmpty.php on line 3
[14-May-2024 20:13:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveEmpty.php on line 3
[14-May-2024 20:13:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/Linkify.php on line 6
[14-May-2024 20:13:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/AutoParagraph.php on line 9
[14-May-2024 20:19:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/SafeObject.php on line 7
[14-May-2024 20:21:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/DisplayLinkURI.php on line 6
[14-May-2024 20:22:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/PurifierLinkify.php on line 7
[14-May-2024 20:22:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveSpansWithoutAttributes.php on line 6
[19-May-2024 09:25:51 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/AutoParagraph.php on line 9
[19-May-2024 10:12:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/SafeObject.php on line 7
[19-May-2024 11:37:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveEmpty.php on line 3
[20-May-2024 07:17:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/DisplayLinkURI.php on line 6
[25-May-2024 08:43:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/Linkify.php on line 6
[29-May-2024 17:55:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveSpansWithoutAttributes.php on line 6
[29-May-2024 18:34:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/SafeObject.php on line 7
[12-Jun-2024 16:10:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/SafeObject.php on line 7
[14-Jun-2024 11:56:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/AutoParagraph.php on line 9
[14-Jun-2024 12:45:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/SafeObject.php on line 7
[14-Jun-2024 13:48:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/Linkify.php on line 6
[14-Jun-2024 13:50:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/DisplayLinkURI.php on line 6
[14-Jun-2024 22:26:51 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/AutoParagraph.php on line 9
[15-Jun-2024 03:02:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/SafeObject.php on line 7
[15-Jun-2024 13:03:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveSpansWithoutAttributes.php on line 6
[15-Jun-2024 16:27:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/DisplayLinkURI.php on line 6
[18-Jun-2024 06:45:51 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/PurifierLinkify.php on line 7
[18-Jun-2024 22:56:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveEmpty.php on line 3
[18-Jun-2024 22:56:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/Linkify.php on line 6
[18-Jun-2024 22:56:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/AutoParagraph.php on line 9
[18-Jun-2024 23:00:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/SafeObject.php on line 7
[18-Jun-2024 23:01:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/DisplayLinkURI.php on line 6
[18-Jun-2024 23:02:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/PurifierLinkify.php on line 7
[18-Jun-2024 23:03:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveSpansWithoutAttributes.php on line 6
[19-Jun-2024 07:54:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveEmpty.php on line 3
[19-Jun-2024 07:54:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/Linkify.php on line 6
[19-Jun-2024 07:54:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/AutoParagraph.php on line 9
[19-Jun-2024 07:58:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/SafeObject.php on line 7
[19-Jun-2024 07:59:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/DisplayLinkURI.php on line 6
[19-Jun-2024 08:00:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/PurifierLinkify.php on line 7
[19-Jun-2024 08:00:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveSpansWithoutAttributes.php on line 6
[19-Jun-2024 17:19:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/Linkify.php on line 6
[19-Jun-2024 20:43:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveEmpty.php on line 3
[19-Jun-2024 20:44:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/Linkify.php on line 6
[19-Jun-2024 20:44:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/AutoParagraph.php on line 9
[19-Jun-2024 20:47:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/SafeObject.php on line 7
[19-Jun-2024 20:48:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/DisplayLinkURI.php on line 6
[19-Jun-2024 20:50:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/PurifierLinkify.php on line 7
[19-Jun-2024 20:50:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveSpansWithoutAttributes.php on line 6
[20-Jun-2024 15:27:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveEmpty.php on line 3
[22-Jun-2024 00:33:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/PurifierLinkify.php on line 7
[22-Jun-2024 01:18:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/AutoParagraph.php on line 9
[22-Jun-2024 03:49:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveEmpty.php on line 3
[28-Jun-2024 01:46:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/PurifierLinkify.php on line 7
[28-Jun-2024 04:16:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/AutoParagraph.php on line 9
[28-Jun-2024 07:02:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/DisplayLinkURI.php on line 6
[29-Jun-2024 09:05:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/Linkify.php on line 6
[02-Jul-2024 09:30:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/Linkify.php on line 6
[03-Jul-2024 13:57:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/SafeObject.php on line 7
[04-Jul-2024 18:13:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveSpansWithoutAttributes.php on line 6
[04-Jul-2024 22:02:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/PurifierLinkify.php on line 7
[05-Jul-2024 03:31:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/AutoParagraph.php on line 9
[08-Jul-2024 19:22:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/Linkify.php on line 6
[10-Jul-2024 23:49:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/PurifierLinkify.php on line 7
[11-Jul-2024 03:44:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/AutoParagraph.php on line 9
[19-Jul-2024 04:51:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/SafeObject.php on line 7
[19-Jul-2024 08:33:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/AutoParagraph.php on line 9
[19-Jul-2024 19:07:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveSpansWithoutAttributes.php on line 6
[19-Jul-2024 21:42:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/DisplayLinkURI.php on line 6
[22-Jul-2024 19:31:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveEmpty.php on line 3
[22-Jul-2024 19:31:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/Linkify.php on line 6
[22-Jul-2024 19:31:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/AutoParagraph.php on line 9
[22-Jul-2024 19:43:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/SafeObject.php on line 7
[22-Jul-2024 19:48:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/DisplayLinkURI.php on line 6
[22-Jul-2024 20:07:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/PurifierLinkify.php on line 7
[22-Jul-2024 20:25:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveSpansWithoutAttributes.php on line 6
[23-Jul-2024 04:02:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/Linkify.php on line 6
[24-Jul-2024 03:08:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/SafeObject.php on line 7
[24-Jul-2024 08:50:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/DisplayLinkURI.php on line 6
[24-Jul-2024 14:26:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/Linkify.php on line 6
[25-Jul-2024 00:03:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/AutoParagraph.php on line 9
[25-Jul-2024 13:38:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/PurifierLinkify.php on line 7
[25-Jul-2024 16:40:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveEmpty.php on line 3
[25-Jul-2024 22:51:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/PurifierLinkify.php on line 7
[29-Jul-2024 01:35:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/Linkify.php on line 6
[29-Jul-2024 07:08:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveEmpty.php on line 3
[29-Jul-2024 11:14:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/AutoParagraph.php on line 9
[29-Jul-2024 21:05:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/SafeObject.php on line 7
[29-Jul-2024 22:46:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/DisplayLinkURI.php on line 6
[31-Jul-2024 01:08:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/Linkify.php on line 6
[31-Jul-2024 08:33:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveEmpty.php on line 3
[31-Jul-2024 10:36:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/PurifierLinkify.php on line 7
[01-Aug-2024 09:46:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/AutoParagraph.php on line 9
[03-Aug-2024 06:14:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/SafeObject.php on line 7
[03-Aug-2024 09:07:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveEmpty.php on line 3
[03-Aug-2024 21:11:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/DisplayLinkURI.php on line 6
[03-Aug-2024 22:57:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/Linkify.php on line 6
[04-Aug-2024 08:40:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/Linkify.php on line 6
[04-Aug-2024 20:21:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/SafeObject.php on line 7
[04-Aug-2024 21:36:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/DisplayLinkURI.php on line 6
[05-Aug-2024 02:28:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/DisplayLinkURI.php on line 6
[07-Aug-2024 15:46:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/PurifierLinkify.php on line 7
[09-Aug-2024 08:56:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/AutoParagraph.php on line 9
[10-Aug-2024 16:22:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/SafeObject.php on line 7
[10-Aug-2024 22:26:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/SafeObject.php on line 7
[11-Aug-2024 00:07:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveSpansWithoutAttributes.php on line 6
[11-Aug-2024 03:02:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/DisplayLinkURI.php on line 6
[14-Aug-2024 13:33:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveSpansWithoutAttributes.php on line 6
[15-Aug-2024 04:39:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/SafeObject.php on line 7
[16-Aug-2024 17:17:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/Linkify.php on line 6
[17-Aug-2024 19:35:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveEmpty.php on line 3
[19-Aug-2024 04:33:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/AutoParagraph.php on line 9
[24-Aug-2024 00:16:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/SafeObject.php on line 7
[25-Aug-2024 19:57:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/SafeObject.php on line 7
[25-Aug-2024 20:37:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/SafeObject.php on line 7
[25-Aug-2024 22:14:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/AutoParagraph.php on line 9
[25-Aug-2024 22:27:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveSpansWithoutAttributes.php on line 6
[26-Aug-2024 01:48:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/DisplayLinkURI.php on line 6
[26-Aug-2024 10:08:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveSpansWithoutAttributes.php on line 6
[26-Aug-2024 19:12:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/DisplayLinkURI.php on line 6
[27-Aug-2024 11:45:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/PurifierLinkify.php on line 7
[31-Aug-2024 16:56:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/PurifierLinkify.php on line 7
[31-Aug-2024 22:45:02 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveEmpty.php on line 3
[31-Aug-2024 23:58:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/DisplayLinkURI.php on line 6
[01-Sep-2024 03:08:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/Linkify.php on line 6
[01-Sep-2024 03:09:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/PurifierLinkify.php on line 7
[01-Sep-2024 23:20:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveEmpty.php on line 3
[01-Sep-2024 23:20:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/Linkify.php on line 6
[01-Sep-2024 23:20:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/AutoParagraph.php on line 9
[01-Sep-2024 23:42:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/SafeObject.php on line 7
[01-Sep-2024 23:50:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/DisplayLinkURI.php on line 6
[02-Sep-2024 00:10:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/PurifierLinkify.php on line 7
[02-Sep-2024 00:28:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveSpansWithoutAttributes.php on line 6
[04-Sep-2024 13:23:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/AutoParagraph.php on line 9
[05-Sep-2024 13:26:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveEmpty.php on line 3
[09-Sep-2024 18:29:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/DisplayLinkURI.php on line 6
[10-Sep-2024 13:02:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/Linkify.php on line 6
[11-Sep-2024 23:00:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveEmpty.php on line 3
[11-Sep-2024 23:00:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/Linkify.php on line 6
[11-Sep-2024 23:00:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/AutoParagraph.php on line 9
[11-Sep-2024 23:11:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/SafeObject.php on line 7
[11-Sep-2024 23:16:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/DisplayLinkURI.php on line 6
[11-Sep-2024 23:35:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/PurifierLinkify.php on line 7
[11-Sep-2024 23:52:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveSpansWithoutAttributes.php on line 6
[12-Sep-2024 14:05:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/AutoParagraph.php on line 9
[12-Sep-2024 18:27:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/AutoParagraph.php on line 9
[12-Sep-2024 23:33:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/AutoParagraph.php on line 9
[13-Sep-2024 06:50:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveEmpty.php on line 3
[13-Sep-2024 06:50:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/Linkify.php on line 6
[13-Sep-2024 06:50:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/AutoParagraph.php on line 9
[13-Sep-2024 06:51:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveEmpty.php on line 3
[13-Sep-2024 06:51:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/Linkify.php on line 6
[13-Sep-2024 06:51:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/AutoParagraph.php on line 9
[13-Sep-2024 07:08:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/SafeObject.php on line 7
[13-Sep-2024 07:08:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/SafeObject.php on line 7
[13-Sep-2024 07:16:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/DisplayLinkURI.php on line 6
[13-Sep-2024 07:16:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/DisplayLinkURI.php on line 6
[13-Sep-2024 07:21:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/PurifierLinkify.php on line 7
[13-Sep-2024 07:21:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/PurifierLinkify.php on line 7
[13-Sep-2024 07:23:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveSpansWithoutAttributes.php on line 6
[13-Sep-2024 07:23:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveSpansWithoutAttributes.php on line 6
[16-Sep-2024 13:22:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveSpansWithoutAttributes.php on line 6
[17-Sep-2024 04:16:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/SafeObject.php on line 7
[24-Sep-2024 20:00:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/SafeObject.php on line 7
[25-Sep-2024 12:50:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/DisplayLinkURI.php on line 6
[26-Sep-2024 02:32:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveSpansWithoutAttributes.php on line 6
[29-Sep-2024 15:27:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/DisplayLinkURI.php on line 6
[30-Sep-2024 12:37:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveSpansWithoutAttributes.php on line 6
[02-Oct-2024 05:34:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/DisplayLinkURI.php on line 6
[02-Oct-2024 12:40:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/SafeObject.php on line 7
[05-Oct-2024 18:50:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/DisplayLinkURI.php on line 6
[07-Oct-2024 10:57:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/AutoParagraph.php on line 9
[08-Oct-2024 00:04:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/SafeObject.php on line 7
[08-Oct-2024 02:23:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveSpansWithoutAttributes.php on line 6
[09-Oct-2024 02:45:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/PurifierLinkify.php on line 7
[09-Oct-2024 10:04:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/Linkify.php on line 6
[09-Oct-2024 18:27:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/PurifierLinkify.php on line 7
[09-Oct-2024 20:21:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/AutoParagraph.php on line 9
[09-Oct-2024 22:09:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/PurifierLinkify.php on line 7
[10-Oct-2024 09:30:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveEmpty.php on line 3
[11-Oct-2024 11:29:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveSpansWithoutAttributes.php on line 6
[13-Oct-2024 01:55:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveEmpty.php on line 3
[13-Oct-2024 10:56:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/Linkify.php on line 6
[14-Oct-2024 04:06:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/DisplayLinkURI.php on line 6
[14-Oct-2024 08:08:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/DisplayLinkURI.php on line 6
[18-Oct-2024 16:23:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveSpansWithoutAttributes.php on line 6
[18-Oct-2024 16:26:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/SafeObject.php on line 7
[18-Oct-2024 16:29:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/Linkify.php on line 6
[18-Oct-2024 16:31:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveEmpty.php on line 3
[18-Oct-2024 16:33:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/DisplayLinkURI.php on line 6
[18-Oct-2024 16:35:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/AutoParagraph.php on line 9
[24-Oct-2024 02:32:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveSpansWithoutAttributes.php on line 6
[25-Oct-2024 03:35:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/SafeObject.php on line 7
[28-Oct-2024 13:01:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/Linkify.php on line 6
[31-Oct-2024 14:10:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveEmpty.php on line 3
[31-Oct-2024 14:11:02 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/Linkify.php on line 6
[31-Oct-2024 14:11:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/AutoParagraph.php on line 9
[31-Oct-2024 14:27:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/SafeObject.php on line 7
[31-Oct-2024 14:34:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/DisplayLinkURI.php on line 6
[31-Oct-2024 14:38:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/PurifierLinkify.php on line 7
[31-Oct-2024 14:39:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveSpansWithoutAttributes.php on line 6
[31-Oct-2024 15:33:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/PurifierLinkify.php on line 7
[10-Nov-2024 09:17:51 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveEmpty.php on line 3
[10-Nov-2024 09:17:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/Linkify.php on line 6
[10-Nov-2024 09:17:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/AutoParagraph.php on line 9
[10-Nov-2024 09:18:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/SafeObject.php on line 7
[10-Nov-2024 09:19:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/DisplayLinkURI.php on line 6
[10-Nov-2024 09:19:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/PurifierLinkify.php on line 7
[10-Nov-2024 09:20:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Injector' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/RemoveSpansWithoutAttributes.php on line 6
htmlpurifier/library/HTMLPurifier/Injector/DisplayLinkURI.php 0000644 00000001533 14716425661 0020303 0 ustar 00 start->attr['href'])) {
$url = $token->start->attr['href'];
unset($token->start->attr['href']);
$token = array($token, new HTMLPurifier_Token_Text(" ($url)"));
} else {
// nothing to display
}
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/Injector/AutoParagraph.php 0000644 00000032744 14716425661 0020246 0 ustar 00 armor['MakeWellFormed_TagClosedError'] = true;
return $par;
}
/**
* @param HTMLPurifier_Token_Text $token
*/
public function handleText(&$token)
{
$text = $token->data;
// Does the current parent allow tags?
if ($this->allowsElement('p')) {
if (empty($this->currentNesting) || strpos($text, "\n\n") !== false) {
// Note that we have differing behavior when dealing with text
// in the anonymous root node, or a node inside the document.
// If the text as a double-newline, the treatment is the same;
// if it doesn't, see the next if-block if you're in the document.
$i = $nesting = null;
if (!$this->forwardUntilEndToken($i, $current, $nesting) && $token->is_whitespace) {
// State 1.1: ... ^ (whitespace, then document end)
// ----
// This is a degenerate case
} else {
if (!$token->is_whitespace || $this->_isInline($current)) {
// State 1.2: PAR1
// ----
// State 1.3: PAR1\n\nPAR2
// ------------
// State 1.4:
PAR1\n\nPAR2 (see State 2)
// ------------
$token = array($this->_pStart());
$this->_splitText($text, $token);
} else {
// State 1.5: \n
// --
}
}
} else {
// State 2:
PAR1... (similar to 1.4)
// ----
// We're in an element that allows paragraph tags, but we're not
// sure if we're going to need them.
if ($this->_pLookAhead()) {
// State 2.1:
PAR1
PAR1\n\nPAR2
// ----
// Note: This will always be the first child, since any
// previous inline element would have triggered this very
// same routine, and found the double newline. One possible
// exception would be a comment.
$token = array($this->_pStart(), $token);
} else {
// State 2.2.1: PAR1
// ----
// State 2.2.2:
PAR1PAR1
// ----
}
}
// Is the current parent a
tag?
} elseif (!empty($this->currentNesting) &&
$this->currentNesting[count($this->currentNesting) - 1]->name == 'p') {
// State 3.1: ...
PAR1
// ----
// State 3.2: ...
PAR1\n\nPAR2
// ------------
$token = array();
$this->_splitText($text, $token);
// Abort!
} else {
// State 4.1: ...PAR1
// ----
// State 4.2: ...PAR1\n\nPAR2
// ------------
}
}
/**
* @param HTMLPurifier_Token $token
*/
public function handleElement(&$token)
{
// We don't have to check if we're already in a
tag for block
// tokens, because the tag would have been autoclosed by MakeWellFormed.
if ($this->allowsElement('p')) {
if (!empty($this->currentNesting)) {
if ($this->_isInline($token)) {
// State 1:
...
// ---
// Check if this token is adjacent to the parent token
// (seek backwards until token isn't whitespace)
$i = null;
$this->backward($i, $prev);
if (!$prev instanceof HTMLPurifier_Token_Start) {
// Token wasn't adjacent
if ($prev instanceof HTMLPurifier_Token_Text &&
substr($prev->data, -2) === "\n\n"
) {
// State 1.1.4: PAR1
\n\n
// ---
// Quite frankly, this should be handled by splitText
$token = array($this->_pStart(), $token);
} else {
// State 1.1.1: PAR1
// ---
// State 1.1.2:
// ---
// State 1.1.3: PAR
// ---
}
} else {
// State 1.2.1:
// ---
// Lookahead to see if is needed.
if ($this->_pLookAhead()) {
// State 1.3.1:
PAR1\n\nPAR2
// ---
$token = array($this->_pStart(), $token);
} else {
// State 1.3.2: PAR1
// ---
// State 1.3.3:
// ---
}
}
} else {
// State 2.3: ...
// -----
}
} else {
if ($this->_isInline($token)) {
// State 3.1:
// ---
// This is where the {p} tag is inserted, not reflected in
// inputTokens yet, however.
$token = array($this->_pStart(), $token);
} else {
// State 3.2:
// -----
}
$i = null;
if ($this->backward($i, $prev)) {
if (!$prev instanceof HTMLPurifier_Token_Text) {
// State 3.1.1: ...{p}
// ---
// State 3.2.1: ...
// -----
if (!is_array($token)) {
$token = array($token);
}
array_unshift($token, new HTMLPurifier_Token_Text("\n\n"));
} else {
// State 3.1.2: ...\n\n{p}
// ---
// State 3.2.2: ...\n\n
// -----
// Note: PAR
cannot occur because PAR would have been
// wrapped in tags.
}
}
}
} else {
// State 2.2:
-
// ----
// State 2.4:
// ---
}
}
/**
* Splits up a text in paragraph tokens and appends them
* to the result stream that will replace the original
* @param string $data String text data that will be processed
* into paragraphs
* @param HTMLPurifier_Token[] $result Reference to array of tokens that the
* tags will be appended onto
*/
private function _splitText($data, &$result)
{
$raw_paragraphs = explode("\n\n", $data);
$paragraphs = array(); // without empty paragraphs
$needs_start = false;
$needs_end = false;
$c = count($raw_paragraphs);
if ($c == 1) {
// There were no double-newlines, abort quickly. In theory this
// should never happen.
$result[] = new HTMLPurifier_Token_Text($data);
return;
}
for ($i = 0; $i < $c; $i++) {
$par = $raw_paragraphs[$i];
if (trim($par) !== '') {
$paragraphs[] = $par;
} else {
if ($i == 0) {
// Double newline at the front
if (empty($result)) {
// The empty result indicates that the AutoParagraph
// injector did not add any start paragraph tokens.
// This means that we have been in a paragraph for
// a while, and the newline means we should start a new one.
$result[] = new HTMLPurifier_Token_End('p');
$result[] = new HTMLPurifier_Token_Text("\n\n");
// However, the start token should only be added if
// there is more processing to be done (i.e. there are
// real paragraphs in here). If there are none, the
// next start paragraph tag will be handled by the
// next call to the injector
$needs_start = true;
} else {
// We just started a new paragraph!
// Reinstate a double-newline for presentation's sake, since
// it was in the source code.
array_unshift($result, new HTMLPurifier_Token_Text("\n\n"));
}
} elseif ($i + 1 == $c) {
// Double newline at the end
// There should be a trailing
when we're finally done.
$needs_end = true;
}
}
}
// Check if this was just a giant blob of whitespace. Move this earlier,
// perhaps?
if (empty($paragraphs)) {
return;
}
// Add the start tag indicated by \n\n at the beginning of $data
if ($needs_start) {
$result[] = $this->_pStart();
}
// Append the paragraphs onto the result
foreach ($paragraphs as $par) {
$result[] = new HTMLPurifier_Token_Text($par);
$result[] = new HTMLPurifier_Token_End('p');
$result[] = new HTMLPurifier_Token_Text("\n\n");
$result[] = $this->_pStart();
}
// Remove trailing start token; Injector will handle this later if
// it was indeed needed. This prevents from needing to do a lookahead,
// at the cost of a lookbehind later.
array_pop($result);
// If there is no need for an end tag, remove all of it and let
// MakeWellFormed close it later.
if (!$needs_end) {
array_pop($result); // removes \n\n
array_pop($result); // removes
}
}
/**
* Returns true if passed token is inline (and, ergo, allowed in
* paragraph tags)
* @param HTMLPurifier_Token $token
* @return bool
*/
private function _isInline($token)
{
return isset($this->htmlDefinition->info['p']->child->elements[$token->name]);
}
/**
* Looks ahead in the token list and determines whether or not we need
* to insert a tag.
* @return bool
*/
private function _pLookAhead()
{
if ($this->currentToken instanceof HTMLPurifier_Token_Start) {
$nesting = 1;
} else {
$nesting = 0;
}
$ok = false;
$i = null;
while ($this->forwardUntilEndToken($i, $current, $nesting)) {
$result = $this->_checkNeedsP($current);
if ($result !== null) {
$ok = $result;
break;
}
}
return $ok;
}
/**
* Determines if a particular token requires an earlier inline token
* to get a paragraph. This should be used with _forwardUntilEndToken
* @param HTMLPurifier_Token $current
* @return bool
*/
private function _checkNeedsP($current)
{
if ($current instanceof HTMLPurifier_Token_Start) {
if (!$this->_isInline($current)) {
//
PAR1
// ----
// Terminate early, since we hit a block element
return false;
}
} elseif ($current instanceof HTMLPurifier_Token_Text) {
if (strpos($current->data, "\n\n") !== false) {
//
PAR1
PAR1\n\nPAR2
// ----
return true;
} else {
// PAR1
PAR1...
// ----
}
}
return null;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/Injector/PurifierLinkify.php 0000644 00000003423 14716425661 0020613 0 ustar 00 array('href'));
/**
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return string
*/
public function prepare($config, $context)
{
$this->docURL = $config->get('AutoFormat.PurifierLinkify.DocURL');
return parent::prepare($config, $context);
}
/**
* @param HTMLPurifier_Token $token
*/
public function handleText(&$token)
{
if (!$this->allowsElement('a')) {
return;
}
if (strpos($token->data, '%') === false) {
return;
}
$bits = preg_split('#%([a-z0-9]+\.[a-z0-9]+)#Si', $token->data, -1, PREG_SPLIT_DELIM_CAPTURE);
$token = array();
// $i = index
// $c = count
// $l = is link
for ($i = 0, $c = count($bits), $l = false; $i < $c; $i++, $l = !$l) {
if (!$l) {
if ($bits[$i] === '') {
continue;
}
$token[] = new HTMLPurifier_Token_Text($bits[$i]);
} else {
$token[] = new HTMLPurifier_Token_Start(
'a',
array('href' => str_replace('%s', $bits[$i], $this->docURL))
);
$token[] = new HTMLPurifier_Token_Text('%' . $bits[$i]);
$token[] = new HTMLPurifier_Token_End('a');
}
}
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/Injector/RemoveEmpty.php 0000644 00000006664 14716425661 0017766 0 ustar 00 config = $config;
$this->context = $context;
$this->removeNbsp = $config->get('AutoFormat.RemoveEmpty.RemoveNbsp');
$this->removeNbspExceptions = $config->get('AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions');
$this->exclude = $config->get('AutoFormat.RemoveEmpty.Predicate');
foreach ($this->exclude as $key => $attrs) {
if (!is_array($attrs)) {
// HACK, see HTMLPurifier/Printer/ConfigForm.php
$this->exclude[$key] = explode(';', $attrs);
}
}
$this->attrValidator = new HTMLPurifier_AttrValidator();
}
/**
* @param HTMLPurifier_Token $token
*/
public function handleElement(&$token)
{
if (!$token instanceof HTMLPurifier_Token_Start) {
return;
}
$next = false;
$deleted = 1; // the current tag
for ($i = count($this->inputZipper->back) - 1; $i >= 0; $i--, $deleted++) {
$next = $this->inputZipper->back[$i];
if ($next instanceof HTMLPurifier_Token_Text) {
if ($next->is_whitespace) {
continue;
}
if ($this->removeNbsp && !isset($this->removeNbspExceptions[$token->name])) {
$plain = str_replace("\xC2\xA0", "", $next->data);
$isWsOrNbsp = $plain === '' || ctype_space($plain);
if ($isWsOrNbsp) {
continue;
}
}
}
break;
}
if (!$next || ($next instanceof HTMLPurifier_Token_End && $next->name == $token->name)) {
$this->attrValidator->validateToken($token, $this->config, $this->context);
$token->armor['ValidateAttributes'] = true;
if (isset($this->exclude[$token->name])) {
$r = true;
foreach ($this->exclude[$token->name] as $elem) {
if (!isset($token->attr[$elem])) $r = false;
}
if ($r) return;
}
if (isset($token->attr['id']) || isset($token->attr['name'])) {
return;
}
$token = $deleted + 1;
for ($b = 0, $c = count($this->inputZipper->front); $b < $c; $b++) {
$prev = $this->inputZipper->front[$b];
if ($prev instanceof HTMLPurifier_Token_Text && $prev->is_whitespace) {
continue;
}
break;
}
// This is safe because we removed the token that triggered this.
$this->rewindOffset($b+$deleted);
return;
}
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/Encoder.php 0000644 00000062057 14716425661 0015312 0 ustar 00 = $c) {
$r .= self::unsafeIconv($in, $out, substr($text, $i));
break;
}
// wibble the boundary
if (0x80 != (0xC0 & ord($text[$i + $max_chunk_size]))) {
$chunk_size = $max_chunk_size;
} elseif (0x80 != (0xC0 & ord($text[$i + $max_chunk_size - 1]))) {
$chunk_size = $max_chunk_size - 1;
} elseif (0x80 != (0xC0 & ord($text[$i + $max_chunk_size - 2]))) {
$chunk_size = $max_chunk_size - 2;
} elseif (0x80 != (0xC0 & ord($text[$i + $max_chunk_size - 3]))) {
$chunk_size = $max_chunk_size - 3;
} else {
return false; // rather confusing UTF-8...
}
$chunk = substr($text, $i, $chunk_size); // substr doesn't mind overlong lengths
$r .= self::unsafeIconv($in, $out, $chunk);
$i += $chunk_size;
}
return $r;
} else {
return false;
}
} else {
return false;
}
}
/**
* Cleans a UTF-8 string for well-formedness and SGML validity
*
* It will parse according to UTF-8 and return a valid UTF8 string, with
* non-SGML codepoints excluded.
*
* Specifically, it will permit:
* \x{9}\x{A}\x{D}\x{20}-\x{7E}\x{A0}-\x{D7FF}\x{E000}-\x{FFFD}\x{10000}-\x{10FFFF}
* Source: https://www.w3.org/TR/REC-xml/#NT-Char
* Arguably this function should be modernized to the HTML5 set
* of allowed characters:
* https://www.w3.org/TR/html5/syntax.html#preprocessing-the-input-stream
* which simultaneously expand and restrict the set of allowed characters.
*
* @param string $str The string to clean
* @param bool $force_php
* @return string
*
* @note Just for reference, the non-SGML code points are 0 to 31 and
* 127 to 159, inclusive. However, we allow code points 9, 10
* and 13, which are the tab, line feed and carriage return
* respectively. 128 and above the code points map to multibyte
* UTF-8 representations.
*
* @note Fallback code adapted from utf8ToUnicode by Henri Sivonen and
* hsivonen@iki.fi at under the
* LGPL license. Notes on what changed are inside, but in general,
* the original code transformed UTF-8 text into an array of integer
* Unicode codepoints. Understandably, transforming that back to
* a string would be somewhat expensive, so the function was modded to
* directly operate on the string. However, this discourages code
* reuse, and the logic enumerated here would be useful for any
* function that needs to be able to understand UTF-8 characters.
* As of right now, only smart lossless character encoding converters
* would need that, and I'm probably not going to implement them.
*/
public static function cleanUTF8($str, $force_php = false)
{
// UTF-8 validity is checked since PHP 4.3.5
// This is an optimization: if the string is already valid UTF-8, no
// need to do PHP stuff. 99% of the time, this will be the case.
if (preg_match(
'/^[\x{9}\x{A}\x{D}\x{20}-\x{7E}\x{A0}-\x{D7FF}\x{E000}-\x{FFFD}\x{10000}-\x{10FFFF}]*$/Du',
$str
)) {
return $str;
}
$mState = 0; // cached expected number of octets after the current octet
// until the beginning of the next UTF8 character sequence
$mUcs4 = 0; // cached Unicode character
$mBytes = 1; // cached expected number of octets in the current sequence
// original code involved an $out that was an array of Unicode
// codepoints. Instead of having to convert back into UTF-8, we've
// decided to directly append valid UTF-8 characters onto a string
// $out once they're done. $char accumulates raw bytes, while $mUcs4
// turns into the Unicode code point, so there's some redundancy.
$out = '';
$char = '';
$len = strlen($str);
for ($i = 0; $i < $len; $i++) {
$in = ord($str{$i});
$char .= $str[$i]; // append byte to char
if (0 == $mState) {
// When mState is zero we expect either a US-ASCII character
// or a multi-octet sequence.
if (0 == (0x80 & ($in))) {
// US-ASCII, pass straight through.
if (($in <= 31 || $in == 127) &&
!($in == 9 || $in == 13 || $in == 10) // save \r\t\n
) {
// control characters, remove
} else {
$out .= $char;
}
// reset
$char = '';
$mBytes = 1;
} elseif (0xC0 == (0xE0 & ($in))) {
// First octet of 2 octet sequence
$mUcs4 = ($in);
$mUcs4 = ($mUcs4 & 0x1F) << 6;
$mState = 1;
$mBytes = 2;
} elseif (0xE0 == (0xF0 & ($in))) {
// First octet of 3 octet sequence
$mUcs4 = ($in);
$mUcs4 = ($mUcs4 & 0x0F) << 12;
$mState = 2;
$mBytes = 3;
} elseif (0xF0 == (0xF8 & ($in))) {
// First octet of 4 octet sequence
$mUcs4 = ($in);
$mUcs4 = ($mUcs4 & 0x07) << 18;
$mState = 3;
$mBytes = 4;
} elseif (0xF8 == (0xFC & ($in))) {
// First octet of 5 octet sequence.
//
// This is illegal because the encoded codepoint must be
// either:
// (a) not the shortest form or
// (b) outside the Unicode range of 0-0x10FFFF.
// Rather than trying to resynchronize, we will carry on
// until the end of the sequence and let the later error
// handling code catch it.
$mUcs4 = ($in);
$mUcs4 = ($mUcs4 & 0x03) << 24;
$mState = 4;
$mBytes = 5;
} elseif (0xFC == (0xFE & ($in))) {
// First octet of 6 octet sequence, see comments for 5
// octet sequence.
$mUcs4 = ($in);
$mUcs4 = ($mUcs4 & 1) << 30;
$mState = 5;
$mBytes = 6;
} else {
// Current octet is neither in the US-ASCII range nor a
// legal first octet of a multi-octet sequence.
$mState = 0;
$mUcs4 = 0;
$mBytes = 1;
$char = '';
}
} else {
// When mState is non-zero, we expect a continuation of the
// multi-octet sequence
if (0x80 == (0xC0 & ($in))) {
// Legal continuation.
$shift = ($mState - 1) * 6;
$tmp = $in;
$tmp = ($tmp & 0x0000003F) << $shift;
$mUcs4 |= $tmp;
if (0 == --$mState) {
// End of the multi-octet sequence. mUcs4 now contains
// the final Unicode codepoint to be output
// Check for illegal sequences and codepoints.
// From Unicode 3.1, non-shortest form is illegal
if (((2 == $mBytes) && ($mUcs4 < 0x0080)) ||
((3 == $mBytes) && ($mUcs4 < 0x0800)) ||
((4 == $mBytes) && ($mUcs4 < 0x10000)) ||
(4 < $mBytes) ||
// From Unicode 3.2, surrogate characters = illegal
(($mUcs4 & 0xFFFFF800) == 0xD800) ||
// Codepoints outside the Unicode range are illegal
($mUcs4 > 0x10FFFF)
) {
} elseif (0xFEFF != $mUcs4 && // omit BOM
// check for valid Char unicode codepoints
(
0x9 == $mUcs4 ||
0xA == $mUcs4 ||
0xD == $mUcs4 ||
(0x20 <= $mUcs4 && 0x7E >= $mUcs4) ||
// 7F-9F is not strictly prohibited by XML,
// but it is non-SGML, and thus we don't allow it
(0xA0 <= $mUcs4 && 0xD7FF >= $mUcs4) ||
(0xE000 <= $mUcs4 && 0xFFFD >= $mUcs4) ||
(0x10000 <= $mUcs4 && 0x10FFFF >= $mUcs4)
)
) {
$out .= $char;
}
// initialize UTF8 cache (reset)
$mState = 0;
$mUcs4 = 0;
$mBytes = 1;
$char = '';
}
} else {
// ((0xC0 & (*in) != 0x80) && (mState != 0))
// Incomplete multi-octet sequence.
// used to result in complete fail, but we'll reset
$mState = 0;
$mUcs4 = 0;
$mBytes = 1;
$char ='';
}
}
}
return $out;
}
/**
* Translates a Unicode codepoint into its corresponding UTF-8 character.
* @note Based on Feyd's function at
* ,
* which is in public domain.
* @note While we're going to do code point parsing anyway, a good
* optimization would be to refuse to translate code points that
* are non-SGML characters. However, this could lead to duplication.
* @note This is very similar to the unichr function in
* maintenance/generate-entity-file.php (although this is superior,
* due to its sanity checks).
*/
// +----------+----------+----------+----------+
// | 33222222 | 22221111 | 111111 | |
// | 10987654 | 32109876 | 54321098 | 76543210 | bit
// +----------+----------+----------+----------+
// | | | | 0xxxxxxx | 1 byte 0x00000000..0x0000007F
// | | | 110yyyyy | 10xxxxxx | 2 byte 0x00000080..0x000007FF
// | | 1110zzzz | 10yyyyyy | 10xxxxxx | 3 byte 0x00000800..0x0000FFFF
// | 11110www | 10wwzzzz | 10yyyyyy | 10xxxxxx | 4 byte 0x00010000..0x0010FFFF
// +----------+----------+----------+----------+
// | 00000000 | 00011111 | 11111111 | 11111111 | Theoretical upper limit of legal scalars: 2097151 (0x001FFFFF)
// | 00000000 | 00010000 | 11111111 | 11111111 | Defined upper limit of legal scalar codes
// +----------+----------+----------+----------+
public static function unichr($code)
{
if ($code > 1114111 or $code < 0 or
($code >= 55296 and $code <= 57343) ) {
// bits are set outside the "valid" range as defined
// by UNICODE 4.1.0
return '';
}
$x = $y = $z = $w = 0;
if ($code < 128) {
// regular ASCII character
$x = $code;
} else {
// set up bits for UTF-8
$x = ($code & 63) | 128;
if ($code < 2048) {
$y = (($code & 2047) >> 6) | 192;
} else {
$y = (($code & 4032) >> 6) | 128;
if ($code < 65536) {
$z = (($code >> 12) & 15) | 224;
} else {
$z = (($code >> 12) & 63) | 128;
$w = (($code >> 18) & 7) | 240;
}
}
}
// set up the actual character
$ret = '';
if ($w) {
$ret .= chr($w);
}
if ($z) {
$ret .= chr($z);
}
if ($y) {
$ret .= chr($y);
}
$ret .= chr($x);
return $ret;
}
/**
* @return bool
*/
public static function iconvAvailable()
{
static $iconv = null;
if ($iconv === null) {
$iconv = function_exists('iconv') && self::testIconvTruncateBug() != self::ICONV_UNUSABLE;
}
return $iconv;
}
/**
* Convert a string to UTF-8 based on configuration.
* @param string $str The string to convert
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return string
*/
public static function convertToUTF8($str, $config, $context)
{
$encoding = $config->get('Core.Encoding');
if ($encoding === 'utf-8') {
return $str;
}
static $iconv = null;
if ($iconv === null) {
$iconv = self::iconvAvailable();
}
if ($iconv && !$config->get('Test.ForceNoIconv')) {
// unaffected by bugs, since UTF-8 support all characters
$str = self::unsafeIconv($encoding, 'utf-8//IGNORE', $str);
if ($str === false) {
// $encoding is not a valid encoding
trigger_error('Invalid encoding ' . $encoding, E_USER_ERROR);
return '';
}
// If the string is bjorked by Shift_JIS or a similar encoding
// that doesn't support all of ASCII, convert the naughty
// characters to their true byte-wise ASCII/UTF-8 equivalents.
$str = strtr($str, self::testEncodingSupportsASCII($encoding));
return $str;
} elseif ($encoding === 'iso-8859-1') {
$str = utf8_encode($str);
return $str;
}
$bug = HTMLPurifier_Encoder::testIconvTruncateBug();
if ($bug == self::ICONV_OK) {
trigger_error('Encoding not supported, please install iconv', E_USER_ERROR);
} else {
trigger_error(
'You have a buggy version of iconv, see https://bugs.php.net/bug.php?id=48147 ' .
'and http://sourceware.org/bugzilla/show_bug.cgi?id=13541',
E_USER_ERROR
);
}
}
/**
* Converts a string from UTF-8 based on configuration.
* @param string $str The string to convert
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return string
* @note Currently, this is a lossy conversion, with unexpressable
* characters being omitted.
*/
public static function convertFromUTF8($str, $config, $context)
{
$encoding = $config->get('Core.Encoding');
if ($escape = $config->get('Core.EscapeNonASCIICharacters')) {
$str = self::convertToASCIIDumbLossless($str);
}
if ($encoding === 'utf-8') {
return $str;
}
static $iconv = null;
if ($iconv === null) {
$iconv = self::iconvAvailable();
}
if ($iconv && !$config->get('Test.ForceNoIconv')) {
// Undo our previous fix in convertToUTF8, otherwise iconv will barf
$ascii_fix = self::testEncodingSupportsASCII($encoding);
if (!$escape && !empty($ascii_fix)) {
$clear_fix = array();
foreach ($ascii_fix as $utf8 => $native) {
$clear_fix[$utf8] = '';
}
$str = strtr($str, $clear_fix);
}
$str = strtr($str, array_flip($ascii_fix));
// Normal stuff
$str = self::iconv('utf-8', $encoding . '//IGNORE', $str);
return $str;
} elseif ($encoding === 'iso-8859-1') {
$str = utf8_decode($str);
return $str;
}
trigger_error('Encoding not supported', E_USER_ERROR);
// You might be tempted to assume that the ASCII representation
// might be OK, however, this is *not* universally true over all
// encodings. So we take the conservative route here, rather
// than forcibly turn on %Core.EscapeNonASCIICharacters
}
/**
* Lossless (character-wise) conversion of HTML to ASCII
* @param string $str UTF-8 string to be converted to ASCII
* @return string ASCII encoded string with non-ASCII character entity-ized
* @warning Adapted from MediaWiki, claiming fair use: this is a common
* algorithm. If you disagree with this license fudgery,
* implement it yourself.
* @note Uses decimal numeric entities since they are best supported.
* @note This is a DUMB function: it has no concept of keeping
* character entities that the projected character encoding
* can allow. We could possibly implement a smart version
* but that would require it to also know which Unicode
* codepoints the charset supported (not an easy task).
* @note Sort of with cleanUTF8() but it assumes that $str is
* well-formed UTF-8
*/
public static function convertToASCIIDumbLossless($str)
{
$bytesleft = 0;
$result = '';
$working = 0;
$len = strlen($str);
for ($i = 0; $i < $len; $i++) {
$bytevalue = ord($str[$i]);
if ($bytevalue <= 0x7F) { //0xxx xxxx
$result .= chr($bytevalue);
$bytesleft = 0;
} elseif ($bytevalue <= 0xBF) { //10xx xxxx
$working = $working << 6;
$working += ($bytevalue & 0x3F);
$bytesleft--;
if ($bytesleft <= 0) {
$result .= "" . $working . ";";
}
} elseif ($bytevalue <= 0xDF) { //110x xxxx
$working = $bytevalue & 0x1F;
$bytesleft = 1;
} elseif ($bytevalue <= 0xEF) { //1110 xxxx
$working = $bytevalue & 0x0F;
$bytesleft = 2;
} else { //1111 0xxx
$working = $bytevalue & 0x07;
$bytesleft = 3;
}
}
return $result;
}
/** No bugs detected in iconv. */
const ICONV_OK = 0;
/** Iconv truncates output if converting from UTF-8 to another
* character set with //IGNORE, and a non-encodable character is found */
const ICONV_TRUNCATES = 1;
/** Iconv does not support //IGNORE, making it unusable for
* transcoding purposes */
const ICONV_UNUSABLE = 2;
/**
* glibc iconv has a known bug where it doesn't handle the magic
* //IGNORE stanza correctly. In particular, rather than ignore
* characters, it will return an EILSEQ after consuming some number
* of characters, and expect you to restart iconv as if it were
* an E2BIG. Old versions of PHP did not respect the errno, and
* returned the fragment, so as a result you would see iconv
* mysteriously truncating output. We can work around this by
* manually chopping our input into segments of about 8000
* characters, as long as PHP ignores the error code. If PHP starts
* paying attention to the error code, iconv becomes unusable.
*
* @return int Error code indicating severity of bug.
*/
public static function testIconvTruncateBug()
{
static $code = null;
if ($code === null) {
// better not use iconv, otherwise infinite loop!
$r = self::unsafeIconv('utf-8', 'ascii//IGNORE', "\xCE\xB1" . str_repeat('a', 9000));
if ($r === false) {
$code = self::ICONV_UNUSABLE;
} elseif (($c = strlen($r)) < 9000) {
$code = self::ICONV_TRUNCATES;
} elseif ($c > 9000) {
trigger_error(
'Your copy of iconv is extremely buggy. Please notify HTML Purifier maintainers: ' .
'include your iconv version as per phpversion()',
E_USER_ERROR
);
} else {
$code = self::ICONV_OK;
}
}
return $code;
}
/**
* This expensive function tests whether or not a given character
* encoding supports ASCII. 7/8-bit encodings like Shift_JIS will
* fail this test, and require special processing. Variable width
* encodings shouldn't ever fail.
*
* @param string $encoding Encoding name to test, as per iconv format
* @param bool $bypass Whether or not to bypass the precompiled arrays.
* @return Array of UTF-8 characters to their corresponding ASCII,
* which can be used to "undo" any overzealous iconv action.
*/
public static function testEncodingSupportsASCII($encoding, $bypass = false)
{
// All calls to iconv here are unsafe, proof by case analysis:
// If ICONV_OK, no difference.
// If ICONV_TRUNCATE, all calls involve one character inputs,
// so bug is not triggered.
// If ICONV_UNUSABLE, this call is irrelevant
static $encodings = array();
if (!$bypass) {
if (isset($encodings[$encoding])) {
return $encodings[$encoding];
}
$lenc = strtolower($encoding);
switch ($lenc) {
case 'shift_jis':
return array("\xC2\xA5" => '\\', "\xE2\x80\xBE" => '~');
case 'johab':
return array("\xE2\x82\xA9" => '\\');
}
if (strpos($lenc, 'iso-8859-') === 0) {
return array();
}
}
$ret = array();
if (self::unsafeIconv('UTF-8', $encoding, 'a') === false) {
return false;
}
for ($i = 0x20; $i <= 0x7E; $i++) { // all printable ASCII chars
$c = chr($i); // UTF-8 char
$r = self::unsafeIconv('UTF-8', "$encoding//IGNORE", $c); // initial conversion
if ($r === '' ||
// This line is needed for iconv implementations that do not
// omit characters that do not exist in the target character set
($r === $c && self::unsafeIconv($encoding, 'UTF-8//IGNORE', $r) !== $c)
) {
// Reverse engineer: what's the UTF-8 equiv of this byte
// sequence? This assumes that there's no variable width
// encoding that doesn't support ASCII.
$ret[self::unsafeIconv($encoding, 'UTF-8//IGNORE', $c)] = $c;
}
}
$encodings[$encoding] = $ret;
return $ret;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/TagTransform.php 0000644 00000002112 14716425661 0016324 0 ustar 00 getHTMLDefinition();
$e =& $context->get('ErrorCollector', true);
// initialize IDAccumulator if necessary
$ok =& $context->get('IDAccumulator', true);
if (!$ok) {
$id_accumulator = HTMLPurifier_IDAccumulator::build($config, $context);
$context->register('IDAccumulator', $id_accumulator);
}
// initialize CurrentToken if necessary
$current_token =& $context->get('CurrentToken', true);
if (!$current_token) {
$context->register('CurrentToken', $token);
}
if (!$token instanceof HTMLPurifier_Token_Start &&
!$token instanceof HTMLPurifier_Token_Empty
) {
return;
}
// create alias to global definition array, see also $defs
// DEFINITION CALL
$d_defs = $definition->info_global_attr;
// don't update token until the very end, to ensure an atomic update
$attr = $token->attr;
// do global transformations (pre)
// nothing currently utilizes this
foreach ($definition->info_attr_transform_pre as $transform) {
$attr = $transform->transform($o = $attr, $config, $context);
if ($e) {
if ($attr != $o) {
$e->send(E_NOTICE, 'AttrValidator: Attributes transformed', $o, $attr);
}
}
}
// do local transformations only applicable to this element (pre)
// ex. to
foreach ($definition->info[$token->name]->attr_transform_pre as $transform) {
$attr = $transform->transform($o = $attr, $config, $context);
if ($e) {
if ($attr != $o) {
$e->send(E_NOTICE, 'AttrValidator: Attributes transformed', $o, $attr);
}
}
}
// create alias to this element's attribute definition array, see
// also $d_defs (global attribute definition array)
// DEFINITION CALL
$defs = $definition->info[$token->name]->attr;
$attr_key = false;
$context->register('CurrentAttr', $attr_key);
// iterate through all the attribute keypairs
// Watch out for name collisions: $key has previously been used
foreach ($attr as $attr_key => $value) {
// call the definition
if (isset($defs[$attr_key])) {
// there is a local definition defined
if ($defs[$attr_key] === false) {
// We've explicitly been told not to allow this element.
// This is usually when there's a global definition
// that must be overridden.
// Theoretically speaking, we could have a
// AttrDef_DenyAll, but this is faster!
$result = false;
} else {
// validate according to the element's definition
$result = $defs[$attr_key]->validate(
$value,
$config,
$context
);
}
} elseif (isset($d_defs[$attr_key])) {
// there is a global definition defined, validate according
// to the global definition
$result = $d_defs[$attr_key]->validate(
$value,
$config,
$context
);
} else {
// system never heard of the attribute? DELETE!
$result = false;
}
// put the results into effect
if ($result === false || $result === null) {
// this is a generic error message that should replaced
// with more specific ones when possible
if ($e) {
$e->send(E_ERROR, 'AttrValidator: Attribute removed');
}
// remove the attribute
unset($attr[$attr_key]);
} elseif (is_string($result)) {
// generally, if a substitution is happening, there
// was some sort of implicit correction going on. We'll
// delegate it to the attribute classes to say exactly what.
// simple substitution
$attr[$attr_key] = $result;
} else {
// nothing happens
}
// we'd also want slightly more complicated substitution
// involving an array as the return value,
// although we're not sure how colliding attributes would
// resolve (certain ones would be completely overriden,
// others would prepend themselves).
}
$context->destroy('CurrentAttr');
// post transforms
// global (error reporting untested)
foreach ($definition->info_attr_transform_post as $transform) {
$attr = $transform->transform($o = $attr, $config, $context);
if ($e) {
if ($attr != $o) {
$e->send(E_NOTICE, 'AttrValidator: Attributes transformed', $o, $attr);
}
}
}
// local (error reporting untested)
foreach ($definition->info[$token->name]->attr_transform_post as $transform) {
$attr = $transform->transform($o = $attr, $config, $context);
if ($e) {
if ($attr != $o) {
$e->send(E_NOTICE, 'AttrValidator: Attributes transformed', $o, $attr);
}
}
}
$token->attr = $attr;
// destroy CurrentToken if we made it ourselves
if (!$current_token) {
$context->destroy('CurrentToken');
}
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/Config.php 0000644 00000075541 14716425661 0015142 0 ustar 00 defaultPlist;
$this->plist = new HTMLPurifier_PropertyList($parent);
$this->def = $definition; // keep a copy around for checking
$this->parser = new HTMLPurifier_VarParser_Flexible();
}
/**
* Convenience constructor that creates a config object based on a mixed var
* @param mixed $config Variable that defines the state of the config
* object. Can be: a HTMLPurifier_Config() object,
* an array of directives based on loadArray(),
* or a string filename of an ini file.
* @param HTMLPurifier_ConfigSchema $schema Schema object
* @return HTMLPurifier_Config Configured object
*/
public static function create($config, $schema = null)
{
if ($config instanceof HTMLPurifier_Config) {
// pass-through
return $config;
}
if (!$schema) {
$ret = HTMLPurifier_Config::createDefault();
} else {
$ret = new HTMLPurifier_Config($schema);
}
if (is_string($config)) {
$ret->loadIni($config);
} elseif (is_array($config)) $ret->loadArray($config);
return $ret;
}
/**
* Creates a new config object that inherits from a previous one.
* @param HTMLPurifier_Config $config Configuration object to inherit from.
* @return HTMLPurifier_Config object with $config as its parent.
*/
public static function inherit(HTMLPurifier_Config $config)
{
return new HTMLPurifier_Config($config->def, $config->plist);
}
/**
* Convenience constructor that creates a default configuration object.
* @return HTMLPurifier_Config default object.
*/
public static function createDefault()
{
$definition = HTMLPurifier_ConfigSchema::instance();
$config = new HTMLPurifier_Config($definition);
return $config;
}
/**
* Retrieves a value from the configuration.
*
* @param string $key String key
* @param mixed $a
*
* @return mixed
*/
public function get($key, $a = null)
{
if ($a !== null) {
$this->triggerError(
"Using deprecated API: use \$config->get('$key.$a') instead",
E_USER_WARNING
);
$key = "$key.$a";
}
if (!$this->finalized) {
$this->autoFinalize();
}
if (!isset($this->def->info[$key])) {
// can't add % due to SimpleTest bug
$this->triggerError(
'Cannot retrieve value of undefined directive ' . htmlspecialchars($key),
E_USER_WARNING
);
return;
}
if (isset($this->def->info[$key]->isAlias)) {
$d = $this->def->info[$key];
$this->triggerError(
'Cannot get value from aliased directive, use real name ' . $d->key,
E_USER_ERROR
);
return;
}
if ($this->lock) {
list($ns) = explode('.', $key);
if ($ns !== $this->lock) {
$this->triggerError(
'Cannot get value of namespace ' . $ns . ' when lock for ' .
$this->lock .
' is active, this probably indicates a Definition setup method ' .
'is accessing directives that are not within its namespace',
E_USER_ERROR
);
return;
}
}
return $this->plist->get($key);
}
/**
* Retrieves an array of directives to values from a given namespace
*
* @param string $namespace String namespace
*
* @return array
*/
public function getBatch($namespace)
{
if (!$this->finalized) {
$this->autoFinalize();
}
$full = $this->getAll();
if (!isset($full[$namespace])) {
$this->triggerError(
'Cannot retrieve undefined namespace ' .
htmlspecialchars($namespace),
E_USER_WARNING
);
return;
}
return $full[$namespace];
}
/**
* Returns a SHA-1 signature of a segment of the configuration object
* that uniquely identifies that particular configuration
*
* @param string $namespace Namespace to get serial for
*
* @return string
* @note Revision is handled specially and is removed from the batch
* before processing!
*/
public function getBatchSerial($namespace)
{
if (empty($this->serials[$namespace])) {
$batch = $this->getBatch($namespace);
unset($batch['DefinitionRev']);
$this->serials[$namespace] = sha1(serialize($batch));
}
return $this->serials[$namespace];
}
/**
* Returns a SHA-1 signature for the entire configuration object
* that uniquely identifies that particular configuration
*
* @return string
*/
public function getSerial()
{
if (empty($this->serial)) {
$this->serial = sha1(serialize($this->getAll()));
}
return $this->serial;
}
/**
* Retrieves all directives, organized by namespace
*
* @warning This is a pretty inefficient function, avoid if you can
*/
public function getAll()
{
if (!$this->finalized) {
$this->autoFinalize();
}
$ret = array();
foreach ($this->plist->squash() as $name => $value) {
list($ns, $key) = explode('.', $name, 2);
$ret[$ns][$key] = $value;
}
return $ret;
}
/**
* Sets a value to configuration.
*
* @param string $key key
* @param mixed $value value
* @param mixed $a
*/
public function set($key, $value, $a = null)
{
if (strpos($key, '.') === false) {
$namespace = $key;
$directive = $value;
$value = $a;
$key = "$key.$directive";
$this->triggerError("Using deprecated API: use \$config->set('$key', ...) instead", E_USER_NOTICE);
} else {
list($namespace) = explode('.', $key);
}
if ($this->isFinalized('Cannot set directive after finalization')) {
return;
}
if (!isset($this->def->info[$key])) {
$this->triggerError(
'Cannot set undefined directive ' . htmlspecialchars($key) . ' to value',
E_USER_WARNING
);
return;
}
$def = $this->def->info[$key];
if (isset($def->isAlias)) {
if ($this->aliasMode) {
$this->triggerError(
'Double-aliases not allowed, please fix '.
'ConfigSchema bug with' . $key,
E_USER_ERROR
);
return;
}
$this->aliasMode = true;
$this->set($def->key, $value);
$this->aliasMode = false;
$this->triggerError("$key is an alias, preferred directive name is {$def->key}", E_USER_NOTICE);
return;
}
// Raw type might be negative when using the fully optimized form
// of stdClass, which indicates allow_null == true
$rtype = is_int($def) ? $def : $def->type;
if ($rtype < 0) {
$type = -$rtype;
$allow_null = true;
} else {
$type = $rtype;
$allow_null = isset($def->allow_null);
}
try {
$value = $this->parser->parse($value, $type, $allow_null);
} catch (HTMLPurifier_VarParserException $e) {
$this->triggerError(
'Value for ' . $key . ' is of invalid type, should be ' .
HTMLPurifier_VarParser::getTypeName($type),
E_USER_WARNING
);
return;
}
if (is_string($value) && is_object($def)) {
// resolve value alias if defined
if (isset($def->aliases[$value])) {
$value = $def->aliases[$value];
}
// check to see if the value is allowed
if (isset($def->allowed) && !isset($def->allowed[$value])) {
$this->triggerError(
'Value not supported, valid values are: ' .
$this->_listify($def->allowed),
E_USER_WARNING
);
return;
}
}
$this->plist->set($key, $value);
// reset definitions if the directives they depend on changed
// this is a very costly process, so it's discouraged
// with finalization
if ($namespace == 'HTML' || $namespace == 'CSS' || $namespace == 'URI') {
$this->definitions[$namespace] = null;
}
$this->serials[$namespace] = false;
}
/**
* Convenience function for error reporting
*
* @param array $lookup
*
* @return string
*/
private function _listify($lookup)
{
$list = array();
foreach ($lookup as $name => $b) {
$list[] = $name;
}
return implode(', ', $list);
}
/**
* Retrieves object reference to the HTML definition.
*
* @param bool $raw Return a copy that has not been setup yet. Must be
* called before it's been setup, otherwise won't work.
* @param bool $optimized If true, this method may return null, to
* indicate that a cached version of the modified
* definition object is available and no further edits
* are necessary. Consider using
* maybeGetRawHTMLDefinition, which is more explicitly
* named, instead.
*
* @return HTMLPurifier_HTMLDefinition
*/
public function getHTMLDefinition($raw = false, $optimized = false)
{
return $this->getDefinition('HTML', $raw, $optimized);
}
/**
* Retrieves object reference to the CSS definition
*
* @param bool $raw Return a copy that has not been setup yet. Must be
* called before it's been setup, otherwise won't work.
* @param bool $optimized If true, this method may return null, to
* indicate that a cached version of the modified
* definition object is available and no further edits
* are necessary. Consider using
* maybeGetRawCSSDefinition, which is more explicitly
* named, instead.
*
* @return HTMLPurifier_CSSDefinition
*/
public function getCSSDefinition($raw = false, $optimized = false)
{
return $this->getDefinition('CSS', $raw, $optimized);
}
/**
* Retrieves object reference to the URI definition
*
* @param bool $raw Return a copy that has not been setup yet. Must be
* called before it's been setup, otherwise won't work.
* @param bool $optimized If true, this method may return null, to
* indicate that a cached version of the modified
* definition object is available and no further edits
* are necessary. Consider using
* maybeGetRawURIDefinition, which is more explicitly
* named, instead.
*
* @return HTMLPurifier_URIDefinition
*/
public function getURIDefinition($raw = false, $optimized = false)
{
return $this->getDefinition('URI', $raw, $optimized);
}
/**
* Retrieves a definition
*
* @param string $type Type of definition: HTML, CSS, etc
* @param bool $raw Whether or not definition should be returned raw
* @param bool $optimized Only has an effect when $raw is true. Whether
* or not to return null if the result is already present in
* the cache. This is off by default for backwards
* compatibility reasons, but you need to do things this
* way in order to ensure that caching is done properly.
* Check out enduser-customize.html for more details.
* We probably won't ever change this default, as much as the
* maybe semantics is the "right thing to do."
*
* @throws HTMLPurifier_Exception
* @return HTMLPurifier_Definition
*/
public function getDefinition($type, $raw = false, $optimized = false)
{
if ($optimized && !$raw) {
throw new HTMLPurifier_Exception("Cannot set optimized = true when raw = false");
}
if (!$this->finalized) {
$this->autoFinalize();
}
// temporarily suspend locks, so we can handle recursive definition calls
$lock = $this->lock;
$this->lock = null;
$factory = HTMLPurifier_DefinitionCacheFactory::instance();
$cache = $factory->create($type, $this);
$this->lock = $lock;
if (!$raw) {
// full definition
// ---------------
// check if definition is in memory
if (!empty($this->definitions[$type])) {
$def = $this->definitions[$type];
// check if the definition is setup
if ($def->setup) {
return $def;
} else {
$def->setup($this);
if ($def->optimized) {
$cache->add($def, $this);
}
return $def;
}
}
// check if definition is in cache
$def = $cache->get($this);
if ($def) {
// definition in cache, save to memory and return it
$this->definitions[$type] = $def;
return $def;
}
// initialize it
$def = $this->initDefinition($type);
// set it up
$this->lock = $type;
$def->setup($this);
$this->lock = null;
// save in cache
$cache->add($def, $this);
// return it
return $def;
} else {
// raw definition
// --------------
// check preconditions
$def = null;
if ($optimized) {
if (is_null($this->get($type . '.DefinitionID'))) {
// fatally error out if definition ID not set
throw new HTMLPurifier_Exception(
"Cannot retrieve raw version without specifying %$type.DefinitionID"
);
}
}
if (!empty($this->definitions[$type])) {
$def = $this->definitions[$type];
if ($def->setup && !$optimized) {
$extra = $this->chatty ?
" (try moving this code block earlier in your initialization)" :
"";
throw new HTMLPurifier_Exception(
"Cannot retrieve raw definition after it has already been setup" .
$extra
);
}
if ($def->optimized === null) {
$extra = $this->chatty ? " (try flushing your cache)" : "";
throw new HTMLPurifier_Exception(
"Optimization status of definition is unknown" . $extra
);
}
if ($def->optimized !== $optimized) {
$msg = $optimized ? "optimized" : "unoptimized";
$extra = $this->chatty ?
" (this backtrace is for the first inconsistent call, which was for a $msg raw definition)"
: "";
throw new HTMLPurifier_Exception(
"Inconsistent use of optimized and unoptimized raw definition retrievals" . $extra
);
}
}
// check if definition was in memory
if ($def) {
if ($def->setup) {
// invariant: $optimized === true (checked above)
return null;
} else {
return $def;
}
}
// if optimized, check if definition was in cache
// (because we do the memory check first, this formulation
// is prone to cache slamming, but I think
// guaranteeing that either /all/ of the raw
// setup code or /none/ of it is run is more important.)
if ($optimized) {
// This code path only gets run once; once we put
// something in $definitions (which is guaranteed by the
// trailing code), we always short-circuit above.
$def = $cache->get($this);
if ($def) {
// save the full definition for later, but don't
// return it yet
$this->definitions[$type] = $def;
return null;
}
}
// check invariants for creation
if (!$optimized) {
if (!is_null($this->get($type . '.DefinitionID'))) {
if ($this->chatty) {
$this->triggerError(
'Due to a documentation error in previous version of HTML Purifier, your ' .
'definitions are not being cached. If this is OK, you can remove the ' .
'%$type.DefinitionRev and %$type.DefinitionID declaration. Otherwise, ' .
'modify your code to use maybeGetRawDefinition, and test if the returned ' .
'value is null before making any edits (if it is null, that means that a ' .
'cached version is available, and no raw operations are necessary). See ' .
'' .
'Customize for more details',
E_USER_WARNING
);
} else {
$this->triggerError(
"Useless DefinitionID declaration",
E_USER_WARNING
);
}
}
}
// initialize it
$def = $this->initDefinition($type);
$def->optimized = $optimized;
return $def;
}
throw new HTMLPurifier_Exception("The impossible happened!");
}
/**
* Initialise definition
*
* @param string $type What type of definition to create
*
* @return HTMLPurifier_CSSDefinition|HTMLPurifier_HTMLDefinition|HTMLPurifier_URIDefinition
* @throws HTMLPurifier_Exception
*/
private function initDefinition($type)
{
// quick checks failed, let's create the object
if ($type == 'HTML') {
$def = new HTMLPurifier_HTMLDefinition();
} elseif ($type == 'CSS') {
$def = new HTMLPurifier_CSSDefinition();
} elseif ($type == 'URI') {
$def = new HTMLPurifier_URIDefinition();
} else {
throw new HTMLPurifier_Exception(
"Definition of $type type not supported"
);
}
$this->definitions[$type] = $def;
return $def;
}
public function maybeGetRawDefinition($name)
{
return $this->getDefinition($name, true, true);
}
/**
* @return HTMLPurifier_HTMLDefinition
*/
public function maybeGetRawHTMLDefinition()
{
return $this->getDefinition('HTML', true, true);
}
/**
* @return HTMLPurifier_CSSDefinition
*/
public function maybeGetRawCSSDefinition()
{
return $this->getDefinition('CSS', true, true);
}
/**
* @return HTMLPurifier_URIDefinition
*/
public function maybeGetRawURIDefinition()
{
return $this->getDefinition('URI', true, true);
}
/**
* Loads configuration values from an array with the following structure:
* Namespace.Directive => Value
*
* @param array $config_array Configuration associative array
*/
public function loadArray($config_array)
{
if ($this->isFinalized('Cannot load directives after finalization')) {
return;
}
foreach ($config_array as $key => $value) {
$key = str_replace('_', '.', $key);
if (strpos($key, '.') !== false) {
$this->set($key, $value);
} else {
$namespace = $key;
$namespace_values = $value;
foreach ($namespace_values as $directive => $value2) {
$this->set($namespace .'.'. $directive, $value2);
}
}
}
}
/**
* Returns a list of array(namespace, directive) for all directives
* that are allowed in a web-form context as per an allowed
* namespaces/directives list.
*
* @param array $allowed List of allowed namespaces/directives
* @param HTMLPurifier_ConfigSchema $schema Schema to use, if not global copy
*
* @return array
*/
public static function getAllowedDirectivesForForm($allowed, $schema = null)
{
if (!$schema) {
$schema = HTMLPurifier_ConfigSchema::instance();
}
if ($allowed !== true) {
if (is_string($allowed)) {
$allowed = array($allowed);
}
$allowed_ns = array();
$allowed_directives = array();
$blacklisted_directives = array();
foreach ($allowed as $ns_or_directive) {
if (strpos($ns_or_directive, '.') !== false) {
// directive
if ($ns_or_directive[0] == '-') {
$blacklisted_directives[substr($ns_or_directive, 1)] = true;
} else {
$allowed_directives[$ns_or_directive] = true;
}
} else {
// namespace
$allowed_ns[$ns_or_directive] = true;
}
}
}
$ret = array();
foreach ($schema->info as $key => $def) {
list($ns, $directive) = explode('.', $key, 2);
if ($allowed !== true) {
if (isset($blacklisted_directives["$ns.$directive"])) {
continue;
}
if (!isset($allowed_directives["$ns.$directive"]) && !isset($allowed_ns[$ns])) {
continue;
}
}
if (isset($def->isAlias)) {
continue;
}
if ($directive == 'DefinitionID' || $directive == 'DefinitionRev') {
continue;
}
$ret[] = array($ns, $directive);
}
return $ret;
}
/**
* Loads configuration values from $_GET/$_POST that were posted
* via ConfigForm
*
* @param array $array $_GET or $_POST array to import
* @param string|bool $index Index/name that the config variables are in
* @param array|bool $allowed List of allowed namespaces/directives
* @param bool $mq_fix Boolean whether or not to enable magic quotes fix
* @param HTMLPurifier_ConfigSchema $schema Schema to use, if not global copy
*
* @return mixed
*/
public static function loadArrayFromForm($array, $index = false, $allowed = true, $mq_fix = true, $schema = null)
{
$ret = HTMLPurifier_Config::prepareArrayFromForm($array, $index, $allowed, $mq_fix, $schema);
$config = HTMLPurifier_Config::create($ret, $schema);
return $config;
}
/**
* Merges in configuration values from $_GET/$_POST to object. NOT STATIC.
*
* @param array $array $_GET or $_POST array to import
* @param string|bool $index Index/name that the config variables are in
* @param array|bool $allowed List of allowed namespaces/directives
* @param bool $mq_fix Boolean whether or not to enable magic quotes fix
*/
public function mergeArrayFromForm($array, $index = false, $allowed = true, $mq_fix = true)
{
$ret = HTMLPurifier_Config::prepareArrayFromForm($array, $index, $allowed, $mq_fix, $this->def);
$this->loadArray($ret);
}
/**
* Prepares an array from a form into something usable for the more
* strict parts of HTMLPurifier_Config
*
* @param array $array $_GET or $_POST array to import
* @param string|bool $index Index/name that the config variables are in
* @param array|bool $allowed List of allowed namespaces/directives
* @param bool $mq_fix Boolean whether or not to enable magic quotes fix
* @param HTMLPurifier_ConfigSchema $schema Schema to use, if not global copy
*
* @return array
*/
public static function prepareArrayFromForm($array, $index = false, $allowed = true, $mq_fix = true, $schema = null)
{
if ($index !== false) {
$array = (isset($array[$index]) && is_array($array[$index])) ? $array[$index] : array();
}
$mq = $mq_fix && function_exists('get_magic_quotes_gpc') && get_magic_quotes_gpc();
$allowed = HTMLPurifier_Config::getAllowedDirectivesForForm($allowed, $schema);
$ret = array();
foreach ($allowed as $key) {
list($ns, $directive) = $key;
$skey = "$ns.$directive";
if (!empty($array["Null_$skey"])) {
$ret[$ns][$directive] = null;
continue;
}
if (!isset($array[$skey])) {
continue;
}
$value = $mq ? stripslashes($array[$skey]) : $array[$skey];
$ret[$ns][$directive] = $value;
}
return $ret;
}
/**
* Loads configuration values from an ini file
*
* @param string $filename Name of ini file
*/
public function loadIni($filename)
{
if ($this->isFinalized('Cannot load directives after finalization')) {
return;
}
$array = parse_ini_file($filename, true);
$this->loadArray($array);
}
/**
* Checks whether or not the configuration object is finalized.
*
* @param string|bool $error String error message, or false for no error
*
* @return bool
*/
public function isFinalized($error = false)
{
if ($this->finalized && $error) {
$this->triggerError($error, E_USER_ERROR);
}
return $this->finalized;
}
/**
* Finalizes configuration only if auto finalize is on and not
* already finalized
*/
public function autoFinalize()
{
if ($this->autoFinalize) {
$this->finalize();
} else {
$this->plist->squash(true);
}
}
/**
* Finalizes a configuration object, prohibiting further change
*/
public function finalize()
{
$this->finalized = true;
$this->parser = null;
}
/**
* Produces a nicely formatted error message by supplying the
* stack frame information OUTSIDE of HTMLPurifier_Config.
*
* @param string $msg An error message
* @param int $no An error number
*/
protected function triggerError($msg, $no)
{
// determine previous stack frame
$extra = '';
if ($this->chatty) {
$trace = debug_backtrace();
// zip(tail(trace), trace) -- but PHP is not Haskell har har
for ($i = 0, $c = count($trace); $i < $c - 1; $i++) {
// XXX this is not correct on some versions of HTML Purifier
if ($trace[$i + 1]['class'] === 'HTMLPurifier_Config') {
continue;
}
$frame = $trace[$i];
$extra = " invoked on line {$frame['line']} in file {$frame['file']}";
break;
}
}
trigger_error($msg . $extra, $no);
}
/**
* Returns a serialized form of the configuration object that can
* be reconstituted.
*
* @return string
*/
public function serialize()
{
$this->getDefinition('HTML');
$this->getDefinition('CSS');
$this->getDefinition('URI');
return serialize($this);
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/PercentEncoder.php 0000644 00000006755 14716425661 0016636 0 ustar 00 preserve[$i] = true;
}
for ($i = 65; $i <= 90; $i++) { // upper-case
$this->preserve[$i] = true;
}
for ($i = 97; $i <= 122; $i++) { // lower-case
$this->preserve[$i] = true;
}
$this->preserve[45] = true; // Dash -
$this->preserve[46] = true; // Period .
$this->preserve[95] = true; // Underscore _
$this->preserve[126]= true; // Tilde ~
// extra letters not to escape
if ($preserve !== false) {
for ($i = 0, $c = strlen($preserve); $i < $c; $i++) {
$this->preserve[ord($preserve[$i])] = true;
}
}
}
/**
* Our replacement for urlencode, it encodes all non-reserved characters,
* as well as any extra characters that were instructed to be preserved.
* @note
* Assumes that the string has already been normalized, making any
* and all percent escape sequences valid. Percents will not be
* re-escaped, regardless of their status in $preserve
* @param string $string String to be encoded
* @return string Encoded string.
*/
public function encode($string)
{
$ret = '';
for ($i = 0, $c = strlen($string); $i < $c; $i++) {
if ($string[$i] !== '%' && !isset($this->preserve[$int = ord($string[$i])])) {
$ret .= '%' . sprintf('%02X', $int);
} else {
$ret .= $string[$i];
}
}
return $ret;
}
/**
* Fix up percent-encoding by decoding unreserved characters and normalizing.
* @warning This function is affected by $preserve, even though the
* usual desired behavior is for this not to preserve those
* characters. Be careful when reusing instances of PercentEncoder!
* @param string $string String to normalize
* @return string
*/
public function normalize($string)
{
if ($string == '') {
return '';
}
$parts = explode('%', $string);
$ret = array_shift($parts);
foreach ($parts as $part) {
$length = strlen($part);
if ($length < 2) {
$ret .= '%25' . $part;
continue;
}
$encoding = substr($part, 0, 2);
$text = substr($part, 2);
if (!ctype_xdigit($encoding)) {
$ret .= '%25' . $part;
continue;
}
$int = hexdec($encoding);
if (isset($this->preserve[$int])) {
$ret .= chr($int) . $text;
continue;
}
$encoding = strtoupper($encoding);
$ret .= '%' . $encoding . $text;
}
return $ret;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/URIScheme.php 0000644 00000006631 14716425661 0015513 0 ustar 00 , resolves edge cases
* with making relative URIs absolute
* @type bool
*/
public $hierarchical = false;
/**
* Whether or not the URI may omit a hostname when the scheme is
* explicitly specified, ala file:///path/to/file. As of writing,
* 'file' is the only scheme that browsers support his properly.
* @type bool
*/
public $may_omit_host = false;
/**
* Validates the components of a URI for a specific scheme.
* @param HTMLPurifier_URI $uri Reference to a HTMLPurifier_URI object
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return bool success or failure
*/
abstract public function doValidate(&$uri, $config, $context);
/**
* Public interface for validating components of a URI. Performs a
* bunch of default actions. Don't overload this method.
* @param HTMLPurifier_URI $uri Reference to a HTMLPurifier_URI object
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return bool success or failure
*/
public function validate(&$uri, $config, $context)
{
if ($this->default_port == $uri->port) {
$uri->port = null;
}
// kludge: browsers do funny things when the scheme but not the
// authority is set
if (!$this->may_omit_host &&
// if the scheme is present, a missing host is always in error
(!is_null($uri->scheme) && ($uri->host === '' || is_null($uri->host))) ||
// if the scheme is not present, a *blank* host is in error,
// since this translates into '///path' which most browsers
// interpret as being 'http://path'.
(is_null($uri->scheme) && $uri->host === '')
) {
do {
if (is_null($uri->scheme)) {
if (substr($uri->path, 0, 2) != '//') {
$uri->host = null;
break;
}
// URI is '////path', so we cannot nullify the
// host to preserve semantics. Try expanding the
// hostname instead (fall through)
}
// first see if we can manually insert a hostname
$host = $config->get('URI.Host');
if (!is_null($host)) {
$uri->host = $host;
} else {
// we can't do anything sensible, reject the URL.
return false;
}
} while (false);
}
return $this->doValidate($uri, $config, $context);
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/Doctype.php 0000644 00000003056 14716425661 0015334 0 ustar 00 renderDoctype.
* If structure changes, please update that function.
*/
class HTMLPurifier_Doctype
{
/**
* Full name of doctype
* @type string
*/
public $name;
/**
* List of standard modules (string identifiers or literal objects)
* that this doctype uses
* @type array
*/
public $modules = array();
/**
* List of modules to use for tidying up code
* @type array
*/
public $tidyModules = array();
/**
* Is the language derived from XML (i.e. XHTML)?
* @type bool
*/
public $xml = true;
/**
* List of aliases for this doctype
* @type array
*/
public $aliases = array();
/**
* Public DTD identifier
* @type string
*/
public $dtdPublic;
/**
* System DTD identifier
* @type string
*/
public $dtdSystem;
public function __construct(
$name = null,
$xml = true,
$modules = array(),
$tidyModules = array(),
$aliases = array(),
$dtd_public = null,
$dtd_system = null
) {
$this->name = $name;
$this->xml = $xml;
$this->modules = $modules;
$this->tidyModules = $tidyModules;
$this->aliases = $aliases;
$this->dtdPublic = $dtd_public;
$this->dtdSystem = $dtd_system;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ContentSets.php 0000644 00000013010 14716425661 0016165 0 ustar 00 true) indexed by name.
* @type array
* @note This is in HTMLPurifier_HTMLDefinition->info_content_sets
*/
public $lookup = array();
/**
* Synchronized list of defined content sets (keys of info).
* @type array
*/
protected $keys = array();
/**
* Synchronized list of defined content values (values of info).
* @type array
*/
protected $values = array();
/**
* Merges in module's content sets, expands identifiers in the content
* sets and populates the keys, values and lookup member variables.
* @param HTMLPurifier_HTMLModule[] $modules List of HTMLPurifier_HTMLModule
*/
public function __construct($modules)
{
if (!is_array($modules)) {
$modules = array($modules);
}
// populate content_sets based on module hints
// sorry, no way of overloading
foreach ($modules as $module) {
foreach ($module->content_sets as $key => $value) {
$temp = $this->convertToLookup($value);
if (isset($this->lookup[$key])) {
// add it into the existing content set
$this->lookup[$key] = array_merge($this->lookup[$key], $temp);
} else {
$this->lookup[$key] = $temp;
}
}
}
$old_lookup = false;
while ($old_lookup !== $this->lookup) {
$old_lookup = $this->lookup;
foreach ($this->lookup as $i => $set) {
$add = array();
foreach ($set as $element => $x) {
if (isset($this->lookup[$element])) {
$add += $this->lookup[$element];
unset($this->lookup[$i][$element]);
}
}
$this->lookup[$i] += $add;
}
}
foreach ($this->lookup as $key => $lookup) {
$this->info[$key] = implode(' | ', array_keys($lookup));
}
$this->keys = array_keys($this->info);
$this->values = array_values($this->info);
}
/**
* Accepts a definition; generates and assigns a ChildDef for it
* @param HTMLPurifier_ElementDef $def HTMLPurifier_ElementDef reference
* @param HTMLPurifier_HTMLModule $module Module that defined the ElementDef
*/
public function generateChildDef(&$def, $module)
{
if (!empty($def->child)) { // already done!
return;
}
$content_model = $def->content_model;
if (is_string($content_model)) {
// Assume that $this->keys is alphanumeric
$def->content_model = preg_replace_callback(
'/\b(' . implode('|', $this->keys) . ')\b/',
array($this, 'generateChildDefCallback'),
$content_model
);
//$def->content_model = str_replace(
// $this->keys, $this->values, $content_model);
}
$def->child = $this->getChildDef($def, $module);
}
public function generateChildDefCallback($matches)
{
return $this->info[$matches[0]];
}
/**
* Instantiates a ChildDef based on content_model and content_model_type
* member variables in HTMLPurifier_ElementDef
* @note This will also defer to modules for custom HTMLPurifier_ChildDef
* subclasses that need content set expansion
* @param HTMLPurifier_ElementDef $def HTMLPurifier_ElementDef to have ChildDef extracted
* @param HTMLPurifier_HTMLModule $module Module that defined the ElementDef
* @return HTMLPurifier_ChildDef corresponding to ElementDef
*/
public function getChildDef($def, $module)
{
$value = $def->content_model;
if (is_object($value)) {
trigger_error(
'Literal object child definitions should be stored in '.
'ElementDef->child not ElementDef->content_model',
E_USER_NOTICE
);
return $value;
}
switch ($def->content_model_type) {
case 'required':
return new HTMLPurifier_ChildDef_Required($value);
case 'optional':
return new HTMLPurifier_ChildDef_Optional($value);
case 'empty':
return new HTMLPurifier_ChildDef_Empty();
case 'custom':
return new HTMLPurifier_ChildDef_Custom($value);
}
// defer to its module
$return = false;
if ($module->defines_child_def) { // save a func call
$return = $module->getChildDef($def);
}
if ($return !== false) {
return $return;
}
// error-out
trigger_error(
'Could not determine which ChildDef class to instantiate',
E_USER_ERROR
);
return false;
}
/**
* Converts a string list of elements separated by pipes into
* a lookup array.
* @param string $string List of elements
* @return array Lookup array of elements
*/
protected function convertToLookup($string)
{
$array = explode('|', str_replace(' ', '', $string));
$ret = array();
foreach ($array as $k) {
$ret[$k] = true;
}
return $ret;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/AttrTransform/ImgRequired.php 0000644 00000002463 14716425661 0020751 0 ustar 00 get('Core.RemoveInvalidImg')) {
return $attr;
}
$attr['src'] = $config->get('Attr.DefaultInvalidImage');
$src = false;
}
if (!isset($attr['alt'])) {
if ($src) {
$alt = $config->get('Attr.DefaultImageAlt');
if ($alt === null) {
$attr['alt'] = basename($attr['src']);
} else {
$attr['alt'] = $alt;
}
} else {
$attr['alt'] = $config->get('Attr.DefaultInvalidImageAlt');
}
}
return $attr;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/AttrTransform/NameSync.php 0000644 00000002022 14716425661 0020240 0 ustar 00 idDef = new HTMLPurifier_AttrDef_HTML_ID();
}
/**
* @param array $attr
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return array
*/
public function transform($attr, $config, $context)
{
if (!isset($attr['name'])) {
return $attr;
}
$name = $attr['name'];
if (isset($attr['id']) && $attr['id'] === $name) {
return $attr;
}
$result = $this->idDef->validate($name, $config, $context);
if ($result === false) {
unset($attr['name']);
} else {
$attr['name'] = $result;
}
return $attr;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/AttrTransform/Background.php 0000644 00000001270 14716425661 0020606 0 ustar 00 confiscateAttr($attr, 'background');
// some validation should happen here
$this->prependCSS($attr, "background-image:url($background);");
return $attr;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/AttrTransform/BoolToCSS.php 0000644 00000002077 14716425661 0020304 0 ustar 00 attr = $attr;
$this->css = $css;
}
/**
* @param array $attr
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return array
*/
public function transform($attr, $config, $context)
{
if (!isset($attr[$this->attr])) {
return $attr;
}
unset($attr[$this->attr]);
$this->prependCSS($attr, $this->css);
return $attr;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/AttrTransform/TargetNoopener.php 0000644 00000001776 14716425661 0021476 0 ustar 00 array('left', 'right'),
'vspace' => array('top', 'bottom')
);
/**
* @param string $attr
*/
public function __construct($attr)
{
$this->attr = $attr;
if (!isset($this->css[$attr])) {
trigger_error(htmlspecialchars($attr) . ' is not valid space attribute');
}
}
/**
* @param array $attr
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return array
*/
public function transform($attr, $config, $context)
{
if (!isset($attr[$this->attr])) {
return $attr;
}
$width = $this->confiscateAttr($attr, $this->attr);
// some validation could happen here
if (!isset($this->css[$this->attr])) {
return $attr;
}
$style = '';
foreach ($this->css[$this->attr] as $suffix) {
$property = "margin-$suffix";
$style .= "$property:{$width}px;";
}
$this->prependCSS($attr, $style);
return $attr;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/AttrTransform/BdoDir.php 0000644 00000001177 14716425661 0017700 0 ustar 00 get('Attr.DefaultTextDir');
return $attr;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/AttrTransform/EnumToCSS.php 0000644 00000003275 14716425661 0020316 0 ustar 00 attr = $attr;
$this->enumToCSS = $enum_to_css;
$this->caseSensitive = (bool)$case_sensitive;
}
/**
* @param array $attr
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return array
*/
public function transform($attr, $config, $context)
{
if (!isset($attr[$this->attr])) {
return $attr;
}
$value = trim($attr[$this->attr]);
unset($attr[$this->attr]);
if (!$this->caseSensitive) {
$value = strtolower($value);
}
if (!isset($this->enumToCSS[$value])) {
return $attr;
}
$this->prependCSS($attr, $this->enumToCSS[$value]);
return $attr;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/AttrTransform/SafeObject.php 0000644 00000001141 14716425661 0020531 0 ustar 00 name = $name;
$this->cssName = $css_name ? $css_name : $name;
}
/**
* @param array $attr
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return array
*/
public function transform($attr, $config, $context)
{
if (!isset($attr[$this->name])) {
return $attr;
}
$length = $this->confiscateAttr($attr, $this->name);
if (ctype_digit($length)) {
$length .= 'px';
}
$this->prependCSS($attr, $this->cssName . ":$length;");
return $attr;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/AttrTransform/Nofollow.php 0000644 00000002435 14716425661 0020332 0 ustar 00 parser = new HTMLPurifier_URIParser();
}
/**
* @param array $attr
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return array
*/
public function transform($attr, $config, $context)
{
if (!isset($attr['href'])) {
return $attr;
}
// XXX Kind of inefficient
$url = $this->parser->parse($attr['href']);
$scheme = $url->getSchemeObj($config, $context);
if ($scheme->browsable && !$url->isLocal($config, $context)) {
if (isset($attr['rel'])) {
$rels = explode(' ', $attr['rel']);
if (!in_array('nofollow', $rels)) {
$rels[] = 'nofollow';
}
$attr['rel'] = implode(' ', $rels);
} else {
$attr['rel'] = 'nofollow';
}
}
return $attr;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/AttrTransform/BgColor.php 0000644 00000001240 14716425661 0020053 0 ustar 00 confiscateAttr($attr, 'bgcolor');
// some validation should happen here
$this->prependCSS($attr, "background-color:$bgcolor;");
return $attr;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/AttrTransform/Textarea.php 0000644 00000001127 14716425661 0020305 0 ustar 00
*/
class HTMLPurifier_AttrTransform_Textarea extends HTMLPurifier_AttrTransform
{
/**
* @param array $attr
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return array
*/
public function transform($attr, $config, $context)
{
// Calculated from Firefox
if (!isset($attr['cols'])) {
$attr['cols'] = '22';
}
if (!isset($attr['rows'])) {
$attr['rows'] = '3';
}
return $attr;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/AttrTransform/ScriptRequired.php 0000644 00000001004 14716425661 0021467 0 ustar 00
*/
class HTMLPurifier_AttrTransform_ScriptRequired extends HTMLPurifier_AttrTransform
{
/**
* @param array $attr
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return array
*/
public function transform($attr, $config, $context)
{
if (!isset($attr['type'])) {
$attr['type'] = 'text/javascript';
}
return $attr;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/AttrTransform/Lang.php 0000644 00000001530 14716425661 0017407 0 ustar 00 uri = new HTMLPurifier_AttrDef_URI(true); // embedded
$this->wmode = new HTMLPurifier_AttrDef_Enum(array('window', 'opaque', 'transparent'));
}
/**
* @param array $attr
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return array
*/
public function transform($attr, $config, $context)
{
// If we add support for other objects, we'll need to alter the
// transforms.
switch ($attr['name']) {
// application/x-shockwave-flash
// Keep this synchronized with Injector/SafeObject.php
case 'allowScriptAccess':
$attr['value'] = 'never';
break;
case 'allowNetworking':
$attr['value'] = 'internal';
break;
case 'allowFullScreen':
if ($config->get('HTML.FlashAllowFullScreen')) {
$attr['value'] = ($attr['value'] == 'true') ? 'true' : 'false';
} else {
$attr['value'] = 'false';
}
break;
case 'wmode':
$attr['value'] = $this->wmode->validate($attr['value'], $config, $context);
break;
case 'movie':
case 'src':
$attr['name'] = "movie";
$attr['value'] = $this->uri->validate($attr['value'], $config, $context);
break;
case 'flashvars':
// we're going to allow arbitrary inputs to the SWF, on
// the reasoning that it could only hack the SWF, not us.
break;
// add other cases to support other param name/value pairs
default:
$attr['name'] = $attr['value'] = null;
}
return $attr;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/AttrTransform/Name.php 0000644 00000001450 14716425661 0017407 0 ustar 00 get('HTML.Attr.Name.UseCDATA')) {
return $attr;
}
if (!isset($attr['name'])) {
return $attr;
}
$id = $this->confiscateAttr($attr, 'name');
if (isset($attr['id'])) {
return $attr;
}
$attr['id'] = $id;
return $attr;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/AttrTransform/Input.php 0000644 00000003100 14716425661 0017620 0 ustar 00 pixels = new HTMLPurifier_AttrDef_HTML_Pixels();
}
/**
* @param array $attr
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return array
*/
public function transform($attr, $config, $context)
{
if (!isset($attr['type'])) {
$t = 'text';
} else {
$t = strtolower($attr['type']);
}
if (isset($attr['checked']) && $t !== 'radio' && $t !== 'checkbox') {
unset($attr['checked']);
}
if (isset($attr['maxlength']) && $t !== 'text' && $t !== 'password') {
unset($attr['maxlength']);
}
if (isset($attr['size']) && $t !== 'text' && $t !== 'password') {
$result = $this->pixels->validate($attr['size'], $config, $context);
if ($result === false) {
unset($attr['size']);
} else {
$attr['size'] = $result;
}
}
if (isset($attr['src']) && $t !== 'image') {
unset($attr['src']);
}
if (!isset($attr['value']) && ($t === 'radio' || $t === 'checkbox')) {
$attr['value'] = '';
}
return $attr;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/AttrTransform/TargetBlank.php 0000644 00000002104 14716425661 0020722 0 ustar 00 parser = new HTMLPurifier_URIParser();
}
/**
* @param array $attr
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return array
*/
public function transform($attr, $config, $context)
{
if (!isset($attr['href'])) {
return $attr;
}
// XXX Kind of inefficient
$url = $this->parser->parse($attr['href']);
$scheme = $url->getSchemeObj($config, $context);
if ($scheme->browsable && !$url->isBenign($config, $context)) {
$attr['target'] = '_blank';
}
return $attr;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/AttrTransform/Border.php 0000644 00000001244 14716425661 0017745 0 ustar 00 confiscateAttr($attr, 'border');
// some validation should happen here
$this->prependCSS($attr, "border:{$border_width}px solid;");
return $attr;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/Strategy/RemoveForeignElements.php 0000644 00000021722 14716425661 0021773 0 ustar 00 getHTMLDefinition();
$generator = new HTMLPurifier_Generator($config, $context);
$result = array();
$escape_invalid_tags = $config->get('Core.EscapeInvalidTags');
$remove_invalid_img = $config->get('Core.RemoveInvalidImg');
// currently only used to determine if comments should be kept
$trusted = $config->get('HTML.Trusted');
$comment_lookup = $config->get('HTML.AllowedComments');
$comment_regexp = $config->get('HTML.AllowedCommentsRegexp');
$check_comments = $comment_lookup !== array() || $comment_regexp !== null;
$remove_script_contents = $config->get('Core.RemoveScriptContents');
$hidden_elements = $config->get('Core.HiddenElements');
// remove script contents compatibility
if ($remove_script_contents === true) {
$hidden_elements['script'] = true;
} elseif ($remove_script_contents === false && isset($hidden_elements['script'])) {
unset($hidden_elements['script']);
}
$attr_validator = new HTMLPurifier_AttrValidator();
// removes tokens until it reaches a closing tag with its value
$remove_until = false;
// converts comments into text tokens when this is equal to a tag name
$textify_comments = false;
$token = false;
$context->register('CurrentToken', $token);
$e = false;
if ($config->get('Core.CollectErrors')) {
$e =& $context->get('ErrorCollector');
}
foreach ($tokens as $token) {
if ($remove_until) {
if (empty($token->is_tag) || $token->name !== $remove_until) {
continue;
}
}
if (!empty($token->is_tag)) {
// DEFINITION CALL
// before any processing, try to transform the element
if (isset($definition->info_tag_transform[$token->name])) {
$original_name = $token->name;
// there is a transformation for this tag
// DEFINITION CALL
$token = $definition->
info_tag_transform[$token->name]->transform($token, $config, $context);
if ($e) {
$e->send(E_NOTICE, 'Strategy_RemoveForeignElements: Tag transform', $original_name);
}
}
if (isset($definition->info[$token->name])) {
// mostly everything's good, but
// we need to make sure required attributes are in order
if (($token instanceof HTMLPurifier_Token_Start || $token instanceof HTMLPurifier_Token_Empty) &&
$definition->info[$token->name]->required_attr &&
($token->name != 'img' || $remove_invalid_img) // ensure config option still works
) {
$attr_validator->validateToken($token, $config, $context);
$ok = true;
foreach ($definition->info[$token->name]->required_attr as $name) {
if (!isset($token->attr[$name])) {
$ok = false;
break;
}
}
if (!$ok) {
if ($e) {
$e->send(
E_ERROR,
'Strategy_RemoveForeignElements: Missing required attribute',
$name
);
}
continue;
}
$token->armor['ValidateAttributes'] = true;
}
if (isset($hidden_elements[$token->name]) && $token instanceof HTMLPurifier_Token_Start) {
$textify_comments = $token->name;
} elseif ($token->name === $textify_comments && $token instanceof HTMLPurifier_Token_End) {
$textify_comments = false;
}
} elseif ($escape_invalid_tags) {
// invalid tag, generate HTML representation and insert in
if ($e) {
$e->send(E_WARNING, 'Strategy_RemoveForeignElements: Foreign element to text');
}
$token = new HTMLPurifier_Token_Text(
$generator->generateFromToken($token)
);
} else {
// check if we need to destroy all of the tag's children
// CAN BE GENERICIZED
if (isset($hidden_elements[$token->name])) {
if ($token instanceof HTMLPurifier_Token_Start) {
$remove_until = $token->name;
} elseif ($token instanceof HTMLPurifier_Token_Empty) {
// do nothing: we're still looking
} else {
$remove_until = false;
}
if ($e) {
$e->send(E_ERROR, 'Strategy_RemoveForeignElements: Foreign meta element removed');
}
} else {
if ($e) {
$e->send(E_ERROR, 'Strategy_RemoveForeignElements: Foreign element removed');
}
}
continue;
}
} elseif ($token instanceof HTMLPurifier_Token_Comment) {
// textify comments in script tags when they are allowed
if ($textify_comments !== false) {
$data = $token->data;
$token = new HTMLPurifier_Token_Text($data);
} elseif ($trusted || $check_comments) {
// always cleanup comments
$trailing_hyphen = false;
if ($e) {
// perform check whether or not there's a trailing hyphen
if (substr($token->data, -1) == '-') {
$trailing_hyphen = true;
}
}
$token->data = rtrim($token->data, '-');
$found_double_hyphen = false;
while (strpos($token->data, '--') !== false) {
$found_double_hyphen = true;
$token->data = str_replace('--', '-', $token->data);
}
if ($trusted || !empty($comment_lookup[trim($token->data)]) ||
($comment_regexp !== null && preg_match($comment_regexp, trim($token->data)))) {
// OK good
if ($e) {
if ($trailing_hyphen) {
$e->send(
E_NOTICE,
'Strategy_RemoveForeignElements: Trailing hyphen in comment removed'
);
}
if ($found_double_hyphen) {
$e->send(E_NOTICE, 'Strategy_RemoveForeignElements: Hyphens in comment collapsed');
}
}
} else {
if ($e) {
$e->send(E_NOTICE, 'Strategy_RemoveForeignElements: Comment removed');
}
continue;
}
} else {
// strip comments
if ($e) {
$e->send(E_NOTICE, 'Strategy_RemoveForeignElements: Comment removed');
}
continue;
}
} elseif ($token instanceof HTMLPurifier_Token_Text) {
} else {
continue;
}
$result[] = $token;
}
if ($remove_until && $e) {
// we removed tokens until the end, throw error
$e->send(E_ERROR, 'Strategy_RemoveForeignElements: Token removed to end', $remove_until);
}
$context->destroy('CurrentToken');
return $result;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/Strategy/FixNesting.php 0000644 00000016605 14716425661 0017611 0 ustar 00 getHTMLDefinition();
$excludes_enabled = !$config->get('Core.DisableExcludes');
// setup the context variable 'IsInline', for chameleon processing
// is 'false' when we are not inline, 'true' when it must always
// be inline, and an integer when it is inline for a certain
// branch of the document tree
$is_inline = $definition->info_parent_def->descendants_are_inline;
$context->register('IsInline', $is_inline);
// setup error collector
$e =& $context->get('ErrorCollector', true);
//####################################################################//
// Loop initialization
// stack that contains all elements that are excluded
// it is organized by parent elements, similar to $stack,
// but it is only populated when an element with exclusions is
// processed, i.e. there won't be empty exclusions.
$exclude_stack = array($definition->info_parent_def->excludes);
// variable that contains the start token while we are processing
// nodes. This enables error reporting to do its job
$node = $top_node;
// dummy token
list($token, $d) = $node->toTokenPair();
$context->register('CurrentNode', $node);
$context->register('CurrentToken', $token);
//####################################################################//
// Loop
// We need to implement a post-order traversal iteratively, to
// avoid running into stack space limits. This is pretty tricky
// to reason about, so we just manually stack-ify the recursive
// variant:
//
// function f($node) {
// foreach ($node->children as $child) {
// f($child);
// }
// validate($node);
// }
//
// Thus, we will represent a stack frame as array($node,
// $is_inline, stack of children)
// e.g. array_reverse($node->children) - already processed
// children.
$parent_def = $definition->info_parent_def;
$stack = array(
array($top_node,
$parent_def->descendants_are_inline,
$parent_def->excludes, // exclusions
0)
);
while (!empty($stack)) {
list($node, $is_inline, $excludes, $ix) = array_pop($stack);
// recursive call
$go = false;
$def = empty($stack) ? $definition->info_parent_def : $definition->info[$node->name];
while (isset($node->children[$ix])) {
$child = $node->children[$ix++];
if ($child instanceof HTMLPurifier_Node_Element) {
$go = true;
$stack[] = array($node, $is_inline, $excludes, $ix);
$stack[] = array($child,
// ToDo: I don't think it matters if it's def or
// child_def, but double check this...
$is_inline || $def->descendants_are_inline,
empty($def->excludes) ? $excludes
: array_merge($excludes, $def->excludes),
0);
break;
}
};
if ($go) continue;
list($token, $d) = $node->toTokenPair();
// base case
if ($excludes_enabled && isset($excludes[$node->name])) {
$node->dead = true;
if ($e) $e->send(E_ERROR, 'Strategy_FixNesting: Node excluded');
} else {
// XXX I suppose it would be slightly more efficient to
// avoid the allocation here and have children
// strategies handle it
$children = array();
foreach ($node->children as $child) {
if (!$child->dead) $children[] = $child;
}
$result = $def->child->validateChildren($children, $config, $context);
if ($result === true) {
// nop
$node->children = $children;
} elseif ($result === false) {
$node->dead = true;
if ($e) $e->send(E_ERROR, 'Strategy_FixNesting: Node removed');
} else {
$node->children = $result;
if ($e) {
// XXX This will miss mutations of internal nodes. Perhaps defer to the child validators
if (empty($result) && !empty($children)) {
$e->send(E_ERROR, 'Strategy_FixNesting: Node contents removed');
} else if ($result != $children) {
$e->send(E_WARNING, 'Strategy_FixNesting: Node reorganized');
}
}
}
}
}
//####################################################################//
// Post-processing
// remove context variables
$context->destroy('IsInline');
$context->destroy('CurrentNode');
$context->destroy('CurrentToken');
//####################################################################//
// Return
return HTMLPurifier_Arborize::flatten($node, $config, $context);
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/Strategy/ValidateAttributes.php 0000644 00000002323 14716425661 0021323 0 ustar 00 register('CurrentToken', $token);
foreach ($tokens as $key => $token) {
// only process tokens that have attributes,
// namely start and empty tags
if (!$token instanceof HTMLPurifier_Token_Start && !$token instanceof HTMLPurifier_Token_Empty) {
continue;
}
// skip tokens that are armored
if (!empty($token->armor['ValidateAttributes'])) {
continue;
}
// note that we have no facilities here for removing tokens
$validator->validateToken($token, $config, $context);
}
$context->destroy('CurrentToken');
return $tokens;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/Strategy/error_log; 0000644 00000151251 14716425661 0017027 0 ustar 00 [28-Nov-2023 21:18:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy_Composite' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Core.php on line 6
[28-Nov-2023 21:18:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/FixNesting.php on line 32
[28-Nov-2023 21:18:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Composite.php on line 6
[28-Nov-2023 21:18:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/MakeWellFormed.php on line 14
[28-Nov-2023 21:18:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/RemoveForeignElements.php on line 11
[28-Nov-2023 21:18:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/ValidateAttributes.php on line 7
[29-Nov-2023 21:10:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy_Composite' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Core.php on line 6
[29-Nov-2023 21:10:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/RemoveForeignElements.php on line 11
[29-Nov-2023 21:10:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/ValidateAttributes.php on line 7
[29-Nov-2023 21:10:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/MakeWellFormed.php on line 14
[29-Nov-2023 21:10:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/FixNesting.php on line 32
[29-Nov-2023 21:10:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Composite.php on line 6
[30-Nov-2023 11:54:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/RemoveForeignElements.php on line 11
[30-Nov-2023 11:54:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Composite.php on line 6
[30-Nov-2023 11:54:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/FixNesting.php on line 32
[30-Nov-2023 11:54:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/MakeWellFormed.php on line 14
[30-Nov-2023 11:54:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy_Composite' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Core.php on line 6
[30-Nov-2023 11:54:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/ValidateAttributes.php on line 7
[01-Dec-2023 19:09:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Composite.php on line 6
[01-Dec-2023 19:09:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy_Composite' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Core.php on line 6
[01-Dec-2023 19:09:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/MakeWellFormed.php on line 14
[01-Dec-2023 19:09:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/RemoveForeignElements.php on line 11
[01-Dec-2023 19:09:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/FixNesting.php on line 32
[01-Dec-2023 19:09:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/ValidateAttributes.php on line 7
[22-Mar-2024 00:21:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy_Composite' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Core.php on line 6
[01-Apr-2024 12:50:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Composite.php on line 6
[04-Apr-2024 22:57:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/MakeWellFormed.php on line 14
[04-Apr-2024 23:12:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/ValidateAttributes.php on line 7
[04-Apr-2024 23:32:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/RemoveForeignElements.php on line 11
[04-Apr-2024 23:36:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/FixNesting.php on line 32
[20-Apr-2024 05:18:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/MakeWellFormed.php on line 14
[20-Apr-2024 08:44:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Composite.php on line 6
[20-Apr-2024 13:02:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy_Composite' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Core.php on line 6
[20-Apr-2024 13:51:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/FixNesting.php on line 32
[20-Apr-2024 14:59:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/RemoveForeignElements.php on line 11
[20-Apr-2024 21:25:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/ValidateAttributes.php on line 7
[02-May-2024 13:12:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy_Composite' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Core.php on line 6
[03-May-2024 02:14:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/RemoveForeignElements.php on line 11
[03-May-2024 02:52:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/FixNesting.php on line 32
[03-May-2024 07:23:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy_Composite' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Core.php on line 6
[03-May-2024 13:43:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Composite.php on line 6
[03-May-2024 15:36:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/MakeWellFormed.php on line 14
[03-May-2024 18:21:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/ValidateAttributes.php on line 7
[05-May-2024 01:31:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/FixNesting.php on line 32
[05-May-2024 01:31:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Composite.php on line 6
[05-May-2024 01:31:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy_Composite' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Core.php on line 6
[05-May-2024 01:39:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/ValidateAttributes.php on line 7
[05-May-2024 01:39:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/RemoveForeignElements.php on line 11
[05-May-2024 01:40:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/MakeWellFormed.php on line 14
[05-May-2024 11:27:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/FixNesting.php on line 32
[05-May-2024 11:27:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy_Composite' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Core.php on line 6
[05-May-2024 11:27:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Composite.php on line 6
[05-May-2024 11:35:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/ValidateAttributes.php on line 7
[05-May-2024 11:35:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/RemoveForeignElements.php on line 11
[05-May-2024 11:35:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/MakeWellFormed.php on line 14
[05-May-2024 20:52:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/FixNesting.php on line 32
[05-May-2024 20:52:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy_Composite' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Core.php on line 6
[05-May-2024 20:52:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Composite.php on line 6
[05-May-2024 21:00:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/ValidateAttributes.php on line 7
[05-May-2024 21:00:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/RemoveForeignElements.php on line 11
[05-May-2024 21:00:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/MakeWellFormed.php on line 14
[13-May-2024 11:53:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/MakeWellFormed.php on line 14
[13-May-2024 11:58:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/ValidateAttributes.php on line 7
[13-May-2024 12:00:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/RemoveForeignElements.php on line 11
[13-May-2024 12:50:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Composite.php on line 6
[13-May-2024 13:01:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/FixNesting.php on line 32
[13-May-2024 13:03:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy_Composite' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Core.php on line 6
[14-May-2024 20:19:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/FixNesting.php on line 32
[14-May-2024 20:19:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy_Composite' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Core.php on line 6
[14-May-2024 20:19:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Composite.php on line 6
[14-May-2024 20:21:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/ValidateAttributes.php on line 7
[14-May-2024 20:21:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/RemoveForeignElements.php on line 11
[14-May-2024 20:21:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/MakeWellFormed.php on line 14
[19-May-2024 08:46:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Composite.php on line 6
[19-May-2024 12:57:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/MakeWellFormed.php on line 14
[04-Jun-2024 14:46:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/MakeWellFormed.php on line 14
[04-Jun-2024 19:38:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/ValidateAttributes.php on line 7
[04-Jun-2024 22:35:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/RemoveForeignElements.php on line 11
[05-Jun-2024 01:00:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Composite.php on line 6
[05-Jun-2024 08:57:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy_Composite' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Core.php on line 6
[05-Jun-2024 12:39:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/FixNesting.php on line 32
[14-Jun-2024 12:00:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy_Composite' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Core.php on line 6
[14-Jun-2024 12:11:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Composite.php on line 6
[14-Jun-2024 13:05:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/FixNesting.php on line 32
[14-Jun-2024 13:25:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/MakeWellFormed.php on line 14
[14-Jun-2024 13:33:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/ValidateAttributes.php on line 7
[14-Jun-2024 14:51:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/RemoveForeignElements.php on line 11
[14-Jun-2024 22:34:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/RemoveForeignElements.php on line 11
[15-Jun-2024 14:35:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/FixNesting.php on line 32
[15-Jun-2024 18:46:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/MakeWellFormed.php on line 14
[16-Jun-2024 10:21:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Composite.php on line 6
[18-Jun-2024 05:08:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/ValidateAttributes.php on line 7
[18-Jun-2024 23:00:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/FixNesting.php on line 32
[18-Jun-2024 23:00:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy_Composite' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Core.php on line 6
[18-Jun-2024 23:00:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Composite.php on line 6
[18-Jun-2024 23:01:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/ValidateAttributes.php on line 7
[18-Jun-2024 23:01:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/RemoveForeignElements.php on line 11
[18-Jun-2024 23:01:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/MakeWellFormed.php on line 14
[19-Jun-2024 07:58:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/FixNesting.php on line 32
[19-Jun-2024 07:58:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy_Composite' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Core.php on line 6
[19-Jun-2024 07:58:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Composite.php on line 6
[19-Jun-2024 07:59:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/ValidateAttributes.php on line 7
[19-Jun-2024 07:59:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/RemoveForeignElements.php on line 11
[19-Jun-2024 07:59:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/MakeWellFormed.php on line 14
[19-Jun-2024 20:47:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/FixNesting.php on line 32
[19-Jun-2024 20:47:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy_Composite' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Core.php on line 6
[19-Jun-2024 20:47:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Composite.php on line 6
[19-Jun-2024 20:49:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/ValidateAttributes.php on line 7
[19-Jun-2024 20:49:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/RemoveForeignElements.php on line 11
[19-Jun-2024 20:49:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/MakeWellFormed.php on line 14
[20-Jun-2024 11:48:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy_Composite' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Core.php on line 6
[28-Jun-2024 05:48:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/RemoveForeignElements.php on line 11
[29-Jun-2024 23:26:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/ValidateAttributes.php on line 7
[29-Jun-2024 23:57:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/MakeWellFormed.php on line 14
[30-Jun-2024 01:44:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/FixNesting.php on line 32
[30-Jun-2024 04:01:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy_Composite' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Core.php on line 6
[05-Jul-2024 04:55:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/RemoveForeignElements.php on line 11
[06-Jul-2024 04:30:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/ValidateAttributes.php on line 7
[06-Jul-2024 05:16:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/MakeWellFormed.php on line 14
[06-Jul-2024 08:53:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/FixNesting.php on line 32
[06-Jul-2024 10:27:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy_Composite' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Core.php on line 6
[11-Jul-2024 05:15:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/RemoveForeignElements.php on line 11
[12-Jul-2024 04:30:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/FixNesting.php on line 32
[12-Jul-2024 05:19:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy_Composite' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Core.php on line 6
[14-Jul-2024 01:35:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Composite.php on line 6
[14-Jul-2024 17:02:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/RemoveForeignElements.php on line 11
[14-Jul-2024 19:42:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/MakeWellFormed.php on line 14
[14-Jul-2024 22:56:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy_Composite' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Core.php on line 6
[15-Jul-2024 01:02:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/ValidateAttributes.php on line 7
[16-Jul-2024 04:09:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/FixNesting.php on line 32
[18-Jul-2024 14:28:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/FixNesting.php on line 32
[19-Jul-2024 08:29:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/RemoveForeignElements.php on line 11
[19-Jul-2024 09:23:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/MakeWellFormed.php on line 14
[22-Jul-2024 19:43:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/FixNesting.php on line 32
[22-Jul-2024 19:43:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy_Composite' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Core.php on line 6
[22-Jul-2024 19:43:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Composite.php on line 6
[22-Jul-2024 19:48:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/ValidateAttributes.php on line 7
[22-Jul-2024 19:48:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/RemoveForeignElements.php on line 11
[22-Jul-2024 19:48:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/MakeWellFormed.php on line 14
[24-Jul-2024 17:27:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy_Composite' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Core.php on line 6
[25-Jul-2024 00:01:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Composite.php on line 6
[25-Jul-2024 02:19:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/ValidateAttributes.php on line 7
[26-Jul-2024 02:39:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Composite.php on line 6
[31-Jul-2024 23:55:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Composite.php on line 6
[07-Aug-2024 04:24:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/MakeWellFormed.php on line 14
[07-Aug-2024 08:28:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Composite.php on line 6
[11-Aug-2024 13:44:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/RemoveForeignElements.php on line 11
[11-Aug-2024 14:54:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/FixNesting.php on line 32
[11-Aug-2024 21:55:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy_Composite' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Core.php on line 6
[12-Aug-2024 07:18:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/MakeWellFormed.php on line 14
[12-Aug-2024 19:17:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Composite.php on line 6
[15-Aug-2024 08:29:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/ValidateAttributes.php on line 7
[17-Aug-2024 20:58:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/MakeWellFormed.php on line 14
[20-Aug-2024 17:48:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Composite.php on line 6
[20-Aug-2024 19:56:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy_Composite' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Core.php on line 6
[21-Aug-2024 04:34:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/RemoveForeignElements.php on line 11
[22-Aug-2024 04:33:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/RemoveForeignElements.php on line 11
[24-Aug-2024 01:30:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Composite.php on line 6
[24-Aug-2024 20:05:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/MakeWellFormed.php on line 14
[25-Aug-2024 12:55:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/ValidateAttributes.php on line 7
[26-Aug-2024 04:01:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/FixNesting.php on line 32
[26-Aug-2024 05:18:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/ValidateAttributes.php on line 7
[26-Aug-2024 06:43:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/MakeWellFormed.php on line 14
[26-Aug-2024 08:38:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy_Composite' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Core.php on line 6
[28-Aug-2024 12:46:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/RemoveForeignElements.php on line 11
[29-Aug-2024 00:41:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Composite.php on line 6
[30-Aug-2024 15:12:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/RemoveForeignElements.php on line 11
[31-Aug-2024 06:15:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/FixNesting.php on line 32
[31-Aug-2024 14:59:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/MakeWellFormed.php on line 14
[01-Sep-2024 01:43:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Composite.php on line 6
[01-Sep-2024 05:09:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy_Composite' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Core.php on line 6
[01-Sep-2024 05:27:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/ValidateAttributes.php on line 7
[01-Sep-2024 12:18:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/ValidateAttributes.php on line 7
[01-Sep-2024 13:13:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/MakeWellFormed.php on line 14
[01-Sep-2024 23:42:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/FixNesting.php on line 32
[01-Sep-2024 23:42:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy_Composite' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Core.php on line 6
[01-Sep-2024 23:42:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Composite.php on line 6
[01-Sep-2024 23:50:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/ValidateAttributes.php on line 7
[01-Sep-2024 23:50:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/RemoveForeignElements.php on line 11
[01-Sep-2024 23:50:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/MakeWellFormed.php on line 14
[02-Sep-2024 17:35:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Composite.php on line 6
[08-Sep-2024 15:58:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/MakeWellFormed.php on line 14
[09-Sep-2024 09:14:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Composite.php on line 6
[11-Sep-2024 23:11:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/FixNesting.php on line 32
[11-Sep-2024 23:11:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy_Composite' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Core.php on line 6
[11-Sep-2024 23:11:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Composite.php on line 6
[11-Sep-2024 23:16:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/ValidateAttributes.php on line 7
[11-Sep-2024 23:16:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/RemoveForeignElements.php on line 11
[11-Sep-2024 23:16:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/MakeWellFormed.php on line 14
[13-Sep-2024 07:08:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/FixNesting.php on line 32
[13-Sep-2024 07:08:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy_Composite' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Core.php on line 6
[13-Sep-2024 07:08:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Composite.php on line 6
[13-Sep-2024 07:09:02 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/FixNesting.php on line 32
[13-Sep-2024 07:09:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy_Composite' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Core.php on line 6
[13-Sep-2024 07:09:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Composite.php on line 6
[13-Sep-2024 07:16:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/ValidateAttributes.php on line 7
[13-Sep-2024 07:16:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/RemoveForeignElements.php on line 11
[13-Sep-2024 07:16:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/MakeWellFormed.php on line 14
[13-Sep-2024 07:16:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/ValidateAttributes.php on line 7
[13-Sep-2024 07:16:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/RemoveForeignElements.php on line 11
[13-Sep-2024 07:16:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/MakeWellFormed.php on line 14
[15-Sep-2024 12:15:51 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/MakeWellFormed.php on line 14
[18-Sep-2024 07:37:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy_Composite' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Core.php on line 6
[27-Sep-2024 06:50:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Composite.php on line 6
[27-Sep-2024 23:01:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/MakeWellFormed.php on line 14
[28-Sep-2024 01:12:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/MakeWellFormed.php on line 14
[28-Sep-2024 06:46:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/RemoveForeignElements.php on line 11
[02-Oct-2024 15:41:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Composite.php on line 6
[03-Oct-2024 07:19:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Composite.php on line 6
[03-Oct-2024 10:09:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy_Composite' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Core.php on line 6
[04-Oct-2024 05:50:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/ValidateAttributes.php on line 7
[04-Oct-2024 16:12:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/FixNesting.php on line 32
[05-Oct-2024 08:08:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/RemoveForeignElements.php on line 11
[08-Oct-2024 22:52:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/FixNesting.php on line 32
[09-Oct-2024 06:04:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy_Composite' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Core.php on line 6
[09-Oct-2024 07:02:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/ValidateAttributes.php on line 7
[09-Oct-2024 16:33:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Composite.php on line 6
[09-Oct-2024 17:16:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/MakeWellFormed.php on line 14
[18-Oct-2024 16:24:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/ValidateAttributes.php on line 7
[18-Oct-2024 16:26:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/FixNesting.php on line 32
[18-Oct-2024 16:26:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/RemoveForeignElements.php on line 11
[18-Oct-2024 16:31:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Composite.php on line 6
[18-Oct-2024 16:31:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy_Composite' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Core.php on line 6
[18-Oct-2024 16:31:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/MakeWellFormed.php on line 14
[23-Oct-2024 16:51:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/FixNesting.php on line 32
[31-Oct-2024 14:27:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/FixNesting.php on line 32
[31-Oct-2024 14:27:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy_Composite' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Core.php on line 6
[31-Oct-2024 14:27:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Composite.php on line 6
[31-Oct-2024 14:34:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/ValidateAttributes.php on line 7
[31-Oct-2024 14:34:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/RemoveForeignElements.php on line 11
[31-Oct-2024 14:34:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/MakeWellFormed.php on line 14
[03-Nov-2024 07:42:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/ValidateAttributes.php on line 7
[06-Nov-2024 05:33:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/MakeWellFormed.php on line 14
[07-Nov-2024 06:13:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Composite.php on line 6
[10-Nov-2024 05:35:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/FixNesting.php on line 32
[10-Nov-2024 05:36:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy_Composite' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Core.php on line 6
[10-Nov-2024 05:36:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/Composite.php on line 6
[10-Nov-2024 05:36:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/ValidateAttributes.php on line 7
[10-Nov-2024 05:36:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/RemoveForeignElements.php on line 11
[10-Nov-2024 05:36:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Strategy' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Strategy/MakeWellFormed.php on line 14
htmlpurifier/library/HTMLPurifier/Strategy/MakeWellFormed.php 0000644 00000065741 14716425661 0020376 0 ustar 00 getHTMLDefinition();
// local variables
$generator = new HTMLPurifier_Generator($config, $context);
$escape_invalid_tags = $config->get('Core.EscapeInvalidTags');
// used for autoclose early abortion
$global_parent_allowed_elements = $definition->info_parent_def->child->getAllowedElements($config);
$e = $context->get('ErrorCollector', true);
$i = false; // injector index
list($zipper, $token) = HTMLPurifier_Zipper::fromArray($tokens);
if ($token === NULL) {
return array();
}
$reprocess = false; // whether or not to reprocess the same token
$stack = array();
// member variables
$this->stack =& $stack;
$this->tokens =& $tokens;
$this->token =& $token;
$this->zipper =& $zipper;
$this->config = $config;
$this->context = $context;
// context variables
$context->register('CurrentNesting', $stack);
$context->register('InputZipper', $zipper);
$context->register('CurrentToken', $token);
// -- begin INJECTOR --
$this->injectors = array();
$injectors = $config->getBatch('AutoFormat');
$def_injectors = $definition->info_injector;
$custom_injectors = $injectors['Custom'];
unset($injectors['Custom']); // special case
foreach ($injectors as $injector => $b) {
// XXX: Fix with a legitimate lookup table of enabled filters
if (strpos($injector, '.') !== false) {
continue;
}
$injector = "HTMLPurifier_Injector_$injector";
if (!$b) {
continue;
}
$this->injectors[] = new $injector;
}
foreach ($def_injectors as $injector) {
// assumed to be objects
$this->injectors[] = $injector;
}
foreach ($custom_injectors as $injector) {
if (!$injector) {
continue;
}
if (is_string($injector)) {
$injector = "HTMLPurifier_Injector_$injector";
$injector = new $injector;
}
$this->injectors[] = $injector;
}
// give the injectors references to the definition and context
// variables for performance reasons
foreach ($this->injectors as $ix => $injector) {
$error = $injector->prepare($config, $context);
if (!$error) {
continue;
}
array_splice($this->injectors, $ix, 1); // rm the injector
trigger_error("Cannot enable {$injector->name} injector because $error is not allowed", E_USER_WARNING);
}
// -- end INJECTOR --
// a note on reprocessing:
// In order to reduce code duplication, whenever some code needs
// to make HTML changes in order to make things "correct", the
// new HTML gets sent through the purifier, regardless of its
// status. This means that if we add a start token, because it
// was totally necessary, we don't have to update nesting; we just
// punt ($reprocess = true; continue;) and it does that for us.
// isset is in loop because $tokens size changes during loop exec
for (;;
// only increment if we don't need to reprocess
$reprocess ? $reprocess = false : $token = $zipper->next($token)) {
// check for a rewind
if (is_int($i)) {
// possibility: disable rewinding if the current token has a
// rewind set on it already. This would offer protection from
// infinite loop, but might hinder some advanced rewinding.
$rewind_offset = $this->injectors[$i]->getRewindOffset();
if (is_int($rewind_offset)) {
for ($j = 0; $j < $rewind_offset; $j++) {
if (empty($zipper->front)) break;
$token = $zipper->prev($token);
// indicate that other injectors should not process this token,
// but we need to reprocess it. See Note [Injector skips]
unset($token->skip[$i]);
$token->rewind = $i;
if ($token instanceof HTMLPurifier_Token_Start) {
array_pop($this->stack);
} elseif ($token instanceof HTMLPurifier_Token_End) {
$this->stack[] = $token->start;
}
}
}
$i = false;
}
// handle case of document end
if ($token === NULL) {
// kill processing if stack is empty
if (empty($this->stack)) {
break;
}
// peek
$top_nesting = array_pop($this->stack);
$this->stack[] = $top_nesting;
// send error [TagClosedSuppress]
if ($e && !isset($top_nesting->armor['MakeWellFormed_TagClosedError'])) {
$e->send(E_NOTICE, 'Strategy_MakeWellFormed: Tag closed by document end', $top_nesting);
}
// append, don't splice, since this is the end
$token = new HTMLPurifier_Token_End($top_nesting->name);
// punt!
$reprocess = true;
continue;
}
//echo '
'; printZipper($zipper, $token);//printTokens($this->stack);
//flush();
// quick-check: if it's not a tag, no need to process
if (empty($token->is_tag)) {
if ($token instanceof HTMLPurifier_Token_Text) {
foreach ($this->injectors as $i => $injector) {
if (isset($token->skip[$i])) {
// See Note [Injector skips]
continue;
}
if ($token->rewind !== null && $token->rewind !== $i) {
continue;
}
// XXX fuckup
$r = $token;
$injector->handleText($r);
$token = $this->processToken($r, $i);
$reprocess = true;
break;
}
}
// another possibility is a comment
continue;
}
if (isset($definition->info[$token->name])) {
$type = $definition->info[$token->name]->child->type;
} else {
$type = false; // Type is unknown, treat accordingly
}
// quick tag checks: anything that's *not* an end tag
$ok = false;
if ($type === 'empty' && $token instanceof HTMLPurifier_Token_Start) {
// claims to be a start tag but is empty
$token = new HTMLPurifier_Token_Empty(
$token->name,
$token->attr,
$token->line,
$token->col,
$token->armor
);
$ok = true;
} elseif ($type && $type !== 'empty' && $token instanceof HTMLPurifier_Token_Empty) {
// claims to be empty but really is a start tag
// NB: this assignment is required
$old_token = $token;
$token = new HTMLPurifier_Token_End($token->name);
$token = $this->insertBefore(
new HTMLPurifier_Token_Start($old_token->name, $old_token->attr, $old_token->line, $old_token->col, $old_token->armor)
);
// punt (since we had to modify the input stream in a non-trivial way)
$reprocess = true;
continue;
} elseif ($token instanceof HTMLPurifier_Token_Empty) {
// real empty token
$ok = true;
} elseif ($token instanceof HTMLPurifier_Token_Start) {
// start tag
// ...unless they also have to close their parent
if (!empty($this->stack)) {
// Performance note: you might think that it's rather
// inefficient, recalculating the autoclose information
// for every tag that a token closes (since when we
// do an autoclose, we push a new token into the
// stream and then /process/ that, before
// re-processing this token.) But this is
// necessary, because an injector can make an
// arbitrary transformations to the autoclosing
// tokens we introduce, so things may have changed
// in the meantime. Also, doing the inefficient thing is
// "easy" to reason about (for certain perverse definitions
// of "easy")
$parent = array_pop($this->stack);
$this->stack[] = $parent;
$parent_def = null;
$parent_elements = null;
$autoclose = false;
if (isset($definition->info[$parent->name])) {
$parent_def = $definition->info[$parent->name];
$parent_elements = $parent_def->child->getAllowedElements($config);
$autoclose = !isset($parent_elements[$token->name]);
}
if ($autoclose && $definition->info[$token->name]->wrap) {
// Check if an element can be wrapped by another
// element to make it valid in a context (for
// example,
needs a - in between)
$wrapname = $definition->info[$token->name]->wrap;
$wrapdef = $definition->info[$wrapname];
$elements = $wrapdef->child->getAllowedElements($config);
if (isset($elements[$token->name]) && isset($parent_elements[$wrapname])) {
$newtoken = new HTMLPurifier_Token_Start($wrapname);
$token = $this->insertBefore($newtoken);
$reprocess = true;
continue;
}
}
$carryover = false;
if ($autoclose && $parent_def->formatting) {
$carryover = true;
}
if ($autoclose) {
// check if this autoclose is doomed to fail
// (this rechecks $parent, which his harmless)
$autoclose_ok = isset($global_parent_allowed_elements[$token->name]);
if (!$autoclose_ok) {
foreach ($this->stack as $ancestor) {
$elements = $definition->info[$ancestor->name]->child->getAllowedElements($config);
if (isset($elements[$token->name])) {
$autoclose_ok = true;
break;
}
if ($definition->info[$token->name]->wrap) {
$wrapname = $definition->info[$token->name]->wrap;
$wrapdef = $definition->info[$wrapname];
$wrap_elements = $wrapdef->child->getAllowedElements($config);
if (isset($wrap_elements[$token->name]) && isset($elements[$wrapname])) {
$autoclose_ok = true;
break;
}
}
}
}
if ($autoclose_ok) {
// errors need to be updated
$new_token = new HTMLPurifier_Token_End($parent->name);
$new_token->start = $parent;
// [TagClosedSuppress]
if ($e && !isset($parent->armor['MakeWellFormed_TagClosedError'])) {
if (!$carryover) {
$e->send(E_NOTICE, 'Strategy_MakeWellFormed: Tag auto closed', $parent);
} else {
$e->send(E_NOTICE, 'Strategy_MakeWellFormed: Tag carryover', $parent);
}
}
if ($carryover) {
$element = clone $parent;
// [TagClosedAuto]
$element->armor['MakeWellFormed_TagClosedError'] = true;
$element->carryover = true;
$token = $this->processToken(array($new_token, $token, $element));
} else {
$token = $this->insertBefore($new_token);
}
} else {
$token = $this->remove();
}
$reprocess = true;
continue;
}
}
$ok = true;
}
if ($ok) {
foreach ($this->injectors as $i => $injector) {
if (isset($token->skip[$i])) {
// See Note [Injector skips]
continue;
}
if ($token->rewind !== null && $token->rewind !== $i) {
continue;
}
$r = $token;
$injector->handleElement($r);
$token = $this->processToken($r, $i);
$reprocess = true;
break;
}
if (!$reprocess) {
// ah, nothing interesting happened; do normal processing
if ($token instanceof HTMLPurifier_Token_Start) {
$this->stack[] = $token;
} elseif ($token instanceof HTMLPurifier_Token_End) {
throw new HTMLPurifier_Exception(
'Improper handling of end tag in start code; possible error in MakeWellFormed'
);
}
}
continue;
}
// sanity check: we should be dealing with a closing tag
if (!$token instanceof HTMLPurifier_Token_End) {
throw new HTMLPurifier_Exception('Unaccounted for tag token in input stream, bug in HTML Purifier');
}
// make sure that we have something open
if (empty($this->stack)) {
if ($escape_invalid_tags) {
if ($e) {
$e->send(E_WARNING, 'Strategy_MakeWellFormed: Unnecessary end tag to text');
}
$token = new HTMLPurifier_Token_Text($generator->generateFromToken($token));
} else {
if ($e) {
$e->send(E_WARNING, 'Strategy_MakeWellFormed: Unnecessary end tag removed');
}
$token = $this->remove();
}
$reprocess = true;
continue;
}
// first, check for the simplest case: everything closes neatly.
// Eventually, everything passes through here; if there are problems
// we modify the input stream accordingly and then punt, so that
// the tokens get processed again.
$current_parent = array_pop($this->stack);
if ($current_parent->name == $token->name) {
$token->start = $current_parent;
foreach ($this->injectors as $i => $injector) {
if (isset($token->skip[$i])) {
// See Note [Injector skips]
continue;
}
if ($token->rewind !== null && $token->rewind !== $i) {
continue;
}
$r = $token;
$injector->handleEnd($r);
$token = $this->processToken($r, $i);
$this->stack[] = $current_parent;
$reprocess = true;
break;
}
continue;
}
// okay, so we're trying to close the wrong tag
// undo the pop previous pop
$this->stack[] = $current_parent;
// scroll back the entire nest, trying to find our tag.
// (feature could be to specify how far you'd like to go)
$size = count($this->stack);
// -2 because -1 is the last element, but we already checked that
$skipped_tags = false;
for ($j = $size - 2; $j >= 0; $j--) {
if ($this->stack[$j]->name == $token->name) {
$skipped_tags = array_slice($this->stack, $j);
break;
}
}
// we didn't find the tag, so remove
if ($skipped_tags === false) {
if ($escape_invalid_tags) {
if ($e) {
$e->send(E_WARNING, 'Strategy_MakeWellFormed: Stray end tag to text');
}
$token = new HTMLPurifier_Token_Text($generator->generateFromToken($token));
} else {
if ($e) {
$e->send(E_WARNING, 'Strategy_MakeWellFormed: Stray end tag removed');
}
$token = $this->remove();
}
$reprocess = true;
continue;
}
// do errors, in REVERSE $j order: a,b,c with
$c = count($skipped_tags);
if ($e) {
for ($j = $c - 1; $j > 0; $j--) {
// notice we exclude $j == 0, i.e. the current ending tag, from
// the errors... [TagClosedSuppress]
if (!isset($skipped_tags[$j]->armor['MakeWellFormed_TagClosedError'])) {
$e->send(E_NOTICE, 'Strategy_MakeWellFormed: Tag closed by element end', $skipped_tags[$j]);
}
}
}
// insert tags, in FORWARD $j order: c,b,a with
$replace = array($token);
for ($j = 1; $j < $c; $j++) {
// ...as well as from the insertions
$new_token = new HTMLPurifier_Token_End($skipped_tags[$j]->name);
$new_token->start = $skipped_tags[$j];
array_unshift($replace, $new_token);
if (isset($definition->info[$new_token->name]) && $definition->info[$new_token->name]->formatting) {
// [TagClosedAuto]
$element = clone $skipped_tags[$j];
$element->carryover = true;
$element->armor['MakeWellFormed_TagClosedError'] = true;
$replace[] = $element;
}
}
$token = $this->processToken($replace);
$reprocess = true;
continue;
}
$context->destroy('CurrentToken');
$context->destroy('CurrentNesting');
$context->destroy('InputZipper');
unset($this->injectors, $this->stack, $this->tokens);
return $zipper->toArray($token);
}
/**
* Processes arbitrary token values for complicated substitution patterns.
* In general:
*
* If $token is an array, it is a list of tokens to substitute for the
* current token. These tokens then get individually processed. If there
* is a leading integer in the list, that integer determines how many
* tokens from the stream should be removed.
*
* If $token is a regular token, it is swapped with the current token.
*
* If $token is false, the current token is deleted.
*
* If $token is an integer, that number of tokens (with the first token
* being the current one) will be deleted.
*
* @param HTMLPurifier_Token|array|int|bool $token Token substitution value
* @param HTMLPurifier_Injector|int $injector Injector that performed the substitution; default is if
* this is not an injector related operation.
* @throws HTMLPurifier_Exception
*/
protected function processToken($token, $injector = -1)
{
// Zend OpCache miscompiles $token = array($token), so
// avoid this pattern. See: https://github.com/ezyang/htmlpurifier/issues/108
// normalize forms of token
if (is_object($token)) {
$tmp = $token;
$token = array(1, $tmp);
}
if (is_int($token)) {
$tmp = $token;
$token = array($tmp);
}
if ($token === false) {
$token = array(1);
}
if (!is_array($token)) {
throw new HTMLPurifier_Exception('Invalid token type from injector');
}
if (!is_int($token[0])) {
array_unshift($token, 1);
}
if ($token[0] === 0) {
throw new HTMLPurifier_Exception('Deleting zero tokens is not valid');
}
// $token is now an array with the following form:
// array(number nodes to delete, new node 1, new node 2, ...)
$delete = array_shift($token);
list($old, $r) = $this->zipper->splice($this->token, $delete, $token);
if ($injector > -1) {
// See Note [Injector skips]
// Determine appropriate skips. Here's what the code does:
// *If* we deleted one or more tokens, copy the skips
// of those tokens into the skips of the new tokens (in $token).
// Also, mark the newly inserted tokens as having come from
// $injector.
$oldskip = isset($old[0]) ? $old[0]->skip : array();
foreach ($token as $object) {
$object->skip = $oldskip;
$object->skip[$injector] = true;
}
}
return $r;
}
/**
* Inserts a token before the current token. Cursor now points to
* this token. You must reprocess after this.
* @param HTMLPurifier_Token $token
*/
private function insertBefore($token)
{
// NB not $this->zipper->insertBefore(), due to positioning
// differences
$splice = $this->zipper->splice($this->token, 0, array($token));
return $splice[1];
}
/**
* Removes current token. Cursor now points to new token occupying previously
* occupied space. You must reprocess after this.
*/
private function remove()
{
return $this->zipper->delete();
}
}
// Note [Injector skips]
// ~~~~~~~~~~~~~~~~~~~~~
// When I originally designed this class, the idea behind the 'skip'
// property of HTMLPurifier_Token was to help avoid infinite loops
// in injector processing. For example, suppose you wrote an injector
// that bolded swear words. Naively, you might write it so that
// whenever you saw ****, you replaced it with
****.
//
// When this happens, we will reprocess all of the tokens with the
// other injectors. Now there is an opportunity for infinite loop:
// if we rerun the swear-word injector on these tokens, we might
// see **** and then reprocess again to get
//
**** ad infinitum.
//
// Thus, the idea of a skip is that once we process a token with
// an injector, we mark all of those tokens as having "come from"
// the injector, and we never run the injector again on these
// tokens.
//
// There were two more complications, however:
//
// - With HTMLPurifier_Injector_RemoveEmpty, we noticed that if
// you had
, after you removed the
, you
// really would like this injector to go back and reprocess
// the
tag, discovering that it is now empty and can be
// removed. So we reintroduced the possibility of infinite looping
// by adding a "rewind" function, which let you go back to an
// earlier point in the token stream and reprocess it with injectors.
// Needless to say, we need to UN-skip the token so it gets
// reprocessed.
//
// - Suppose that you successfuly process a token, replace it with
// one with your skip mark, but now another injector wants to
// process the skipped token with another token. Should you continue
// to skip that new token, or reprocess it? If you reprocess,
// you can end up with an infinite loop where one injector converts
// to , and then another injector converts it back. So
// we inherit the skips, but for some reason, I thought that we
// should inherit the skip from the first token of the token
// that we deleted. Why? Well, it seems to work OK.
//
// If I were to redesign this functionality, I would absolutely not
// go about doing it this way: the semantics are just not very well
// defined, and in any case you probably wanted to operate on trees,
// not token streams.
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/Strategy/Composite.php 0000644 00000001327 14716425661 0017470 0 ustar 00 strategies as $strategy) {
$tokens = $strategy->execute($tokens, $config, $context);
}
return $tokens;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/Strategy/Core.php 0000644 00000001006 14716425661 0016410 0 ustar 00 strategies[] = new HTMLPurifier_Strategy_RemoveForeignElements();
$this->strategies[] = new HTMLPurifier_Strategy_MakeWellFormed();
$this->strategies[] = new HTMLPurifier_Strategy_FixNesting();
$this->strategies[] = new HTMLPurifier_Strategy_ValidateAttributes();
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/AttrDef/URI.php 0000644 00000005230 14716425661 0015711 0 ustar 00 parser = new HTMLPurifier_URIParser();
$this->embedsResource = (bool)$embeds_resource;
}
/**
* @param string $string
* @return HTMLPurifier_AttrDef_URI
*/
public function make($string)
{
$embeds = ($string === 'embedded');
return new HTMLPurifier_AttrDef_URI($embeds);
}
/**
* @param string $uri
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return bool|string
*/
public function validate($uri, $config, $context)
{
if ($config->get('URI.Disable')) {
return false;
}
$uri = $this->parseCDATA($uri);
// parse the URI
$uri = $this->parser->parse($uri);
if ($uri === false) {
return false;
}
// add embedded flag to context for validators
$context->register('EmbeddedURI', $this->embedsResource);
$ok = false;
do {
// generic validation
$result = $uri->validate($config, $context);
if (!$result) {
break;
}
// chained filtering
$uri_def = $config->getDefinition('URI');
$result = $uri_def->filter($uri, $config, $context);
if (!$result) {
break;
}
// scheme-specific validation
$scheme_obj = $uri->getSchemeObj($config, $context);
if (!$scheme_obj) {
break;
}
if ($this->embedsResource && !$scheme_obj->browsable) {
break;
}
$result = $scheme_obj->validate($uri, $config, $context);
if (!$result) {
break;
}
// Post chained filtering
$result = $uri_def->postFilter($uri, $config, $context);
if (!$result) {
break;
}
// survived gauntlet
$ok = true;
} while (false);
$context->destroy('EmbeddedURI');
if (!$ok) {
return false;
}
// back to string
return $uri->toString();
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/AttrDef/Text.php 0000644 00000000656 14716425661 0016205 0 ustar 00 parseCDATA($string);
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Nmtokens.php 0000644 00000004141 14716425661 0017614 0 ustar 00 split($string, $config, $context);
$tokens = $this->filter($tokens, $config, $context);
if (empty($tokens)) {
return false;
}
return implode(' ', $tokens);
}
/**
* Splits a space separated list of tokens into its constituent parts.
* @param string $string
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return array
*/
protected function split($string, $config, $context)
{
// OPTIMIZABLE!
// do the preg_match, capture all subpatterns for reformulation
// we don't support U+00A1 and up codepoints or
// escaping because I don't know how to do that with regexps
// and plus it would complicate optimization efforts (you never
// see that anyway).
$pattern = '/(?:(?<=\s)|\A)' . // look behind for space or string start
'((?:--|-?[A-Za-z_])[A-Za-z_\-0-9]*)' .
'(?:(?=\s)|\z)/'; // look ahead for space or string end
preg_match_all($pattern, $string, $matches);
return $matches[1];
}
/**
* Template method for removing certain tokens based on arbitrary criteria.
* @note If we wanted to be really functional, we'd do an array_filter
* with a callback. But... we're not.
* @param array $tokens
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return array
*/
protected function filter($tokens, $config, $context)
{
return $tokens;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Class.php 0000644 00000002715 14716425661 0017070 0 ustar 00 getDefinition('HTML')->doctype->name;
if ($name == "XHTML 1.1" || $name == "XHTML 2.0") {
return parent::split($string, $config, $context);
} else {
return preg_split('/\s+/', $string);
}
}
/**
* @param array $tokens
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return array
*/
protected function filter($tokens, $config, $context)
{
$allowed = $config->get('Attr.AllowedClasses');
$forbidden = $config->get('Attr.ForbiddenClasses');
$ret = array();
foreach ($tokens as $token) {
if (($allowed === null || isset($allowed[$token])) &&
!isset($forbidden[$token]) &&
// We need this O(n) check because of PHP's array
// implementation that casts -0 to 0.
!in_array($token, $ret, true)
) {
$ret[] = $token;
}
}
return $ret;
}
}
htmlpurifier/library/HTMLPurifier/AttrDef/HTML/FrameTarget.php 0000644 00000001502 14716425661 0020215 0 ustar 00 valid_values === false) {
$this->valid_values = $config->get('Attr.AllowedFrameTargets');
}
return parent::validate($string, $config, $context);
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/AttrDef/HTML/LinkTypes.php 0000644 00000003350 14716425661 0017741 0 ustar 00 'AllowedRel',
'rev' => 'AllowedRev'
);
if (!isset($configLookup[$name])) {
trigger_error(
'Unrecognized attribute name for link ' .
'relationship.',
E_USER_ERROR
);
return;
}
$this->name = $configLookup[$name];
}
/**
* @param string $string
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return bool|string
*/
public function validate($string, $config, $context)
{
$allowed = $config->get('Attr.' . $this->name);
if (empty($allowed)) {
return false;
}
$string = $this->parseCDATA($string);
$parts = explode(' ', $string);
// lookup to prevent duplicates
$ret_lookup = array();
foreach ($parts as $part) {
$part = strtolower(trim($part));
if (!isset($allowed[$part])) {
continue;
}
$ret_lookup[$part] = true;
}
if (empty($ret_lookup)) {
return false;
}
$string = implode(' ', array_keys($ret_lookup));
return $string;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Pixels.php 0000644 00000003274 14716425661 0017270 0 ustar 00 max = $max;
}
/**
* @param string $string
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return bool|string
*/
public function validate($string, $config, $context)
{
$string = trim($string);
if ($string === '0') {
return $string;
}
if ($string === '') {
return false;
}
$length = strlen($string);
if (substr($string, $length - 2) == 'px') {
$string = substr($string, 0, $length - 2);
}
if (!is_numeric($string)) {
return false;
}
$int = (int)$string;
if ($int < 0) {
return '0';
}
// upper-bound value, extremely high values can
// crash operating systems, see
// WARNING, above link WILL crash you if you're using Windows
if ($this->max !== null && $int > $this->max) {
return (string)$this->max;
}
return (string)$int;
}
/**
* @param string $string
* @return HTMLPurifier_AttrDef
*/
public function make($string)
{
if ($string === '') {
$max = null;
} else {
$max = (int)$string;
}
$class = get_class($this);
return new $class($max);
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/AttrDef/HTML/error_log; 0000644 00000301764 14716425661 0017330 0 ustar 00 [14-Sep-2023 19:23:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Nmtokens' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Class.php on line 6
[16-Sep-2023 06:42:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/LinkTypes.php on line 9
[16-Sep-2023 08:29:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Pixels' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Length.php on line 10
[17-Sep-2023 16:46:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Bool.php on line 6
[19-Sep-2023 04:13:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Length' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/MultiLength.php on line 9
[19-Sep-2023 05:01:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Nmtokens.php on line 6
[27-Sep-2023 13:59:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Pixels.php on line 6
[06-Nov-2023 08:53:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/ID.php on line 12
[16-Nov-2023 19:30:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Color.php on line 6
[19-Nov-2023 13:33:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_Enum' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/FrameTarget.php on line 6
[24-Nov-2023 00:55:02 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Nmtokens' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Class.php on line 6
[26-Nov-2023 18:55:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Pixels' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Length.php on line 10
[27-Nov-2023 09:13:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Bool.php on line 6
[30-Nov-2023 01:51:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Length' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/MultiLength.php on line 9
[02-Dec-2023 20:16:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Bool.php on line 6
[02-Dec-2023 20:16:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Nmtokens' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Class.php on line 6
[02-Dec-2023 20:16:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/ID.php on line 12
[02-Dec-2023 20:16:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Color.php on line 6
[02-Dec-2023 20:16:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Pixels' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Length.php on line 10
[02-Dec-2023 20:16:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/LinkTypes.php on line 9
[02-Dec-2023 20:16:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Nmtokens.php on line 6
[02-Dec-2023 20:16:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_Enum' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/FrameTarget.php on line 6
[02-Dec-2023 20:16:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Pixels.php on line 6
[02-Dec-2023 20:16:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Length' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/MultiLength.php on line 9
[03-Dec-2023 16:46:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/LinkTypes.php on line 9
[03-Dec-2023 16:46:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Color.php on line 6
[03-Dec-2023 16:46:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/ID.php on line 12
[03-Dec-2023 16:46:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Pixels' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Length.php on line 10
[03-Dec-2023 16:46:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Nmtokens.php on line 6
[03-Dec-2023 16:46:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Pixels.php on line 6
[03-Dec-2023 16:46:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Bool.php on line 6
[03-Dec-2023 16:46:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Nmtokens' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Class.php on line 6
[03-Dec-2023 16:46:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_Enum' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/FrameTarget.php on line 6
[03-Dec-2023 16:46:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Length' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/MultiLength.php on line 9
[03-Dec-2023 16:53:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Bool.php on line 6
[03-Dec-2023 16:54:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Nmtokens' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Class.php on line 6
[03-Dec-2023 16:54:02 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Color.php on line 6
[03-Dec-2023 16:54:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Nmtokens.php on line 6
[03-Dec-2023 16:54:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/LinkTypes.php on line 9
[03-Dec-2023 16:54:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Pixels.php on line 6
[03-Dec-2023 16:54:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/ID.php on line 12
[03-Dec-2023 16:54:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Pixels' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Length.php on line 10
[03-Dec-2023 16:54:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_Enum' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/FrameTarget.php on line 6
[03-Dec-2023 16:54:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Length' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/MultiLength.php on line 9
[03-Dec-2023 23:13:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Bool.php on line 6
[03-Dec-2023 23:13:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Nmtokens' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Class.php on line 6
[03-Dec-2023 23:13:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/LinkTypes.php on line 9
[03-Dec-2023 23:13:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Pixels' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Length.php on line 10
[03-Dec-2023 23:13:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Color.php on line 6
[03-Dec-2023 23:13:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/ID.php on line 12
[03-Dec-2023 23:13:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Nmtokens.php on line 6
[03-Dec-2023 23:13:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Pixels.php on line 6
[03-Dec-2023 23:13:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_Enum' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/FrameTarget.php on line 6
[03-Dec-2023 23:13:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Length' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/MultiLength.php on line 9
[04-Dec-2023 05:18:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Nmtokens.php on line 6
[07-Dec-2023 14:33:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Pixels.php on line 6
[12-Dec-2023 22:29:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/ID.php on line 12
[31-Dec-2023 00:30:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/ID.php on line 12
[31-Dec-2023 10:35:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/LinkTypes.php on line 9
[02-Jan-2024 16:24:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_Enum' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/FrameTarget.php on line 6
[05-Jan-2024 08:01:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Nmtokens' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Class.php on line 6
[12-Jan-2024 06:35:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Length' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/MultiLength.php on line 9
[12-Jan-2024 11:21:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Color.php on line 6
[14-Jan-2024 16:59:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Pixels.php on line 6
[16-Jan-2024 11:19:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Pixels' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Length.php on line 10
[20-Jan-2024 21:55:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Bool.php on line 6
[22-Jan-2024 04:48:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Nmtokens.php on line 6
[16-Mar-2024 17:57:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/LinkTypes.php on line 9
[17-Mar-2024 00:39:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/ID.php on line 12
[17-Mar-2024 10:03:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Pixels' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Length.php on line 10
[21-Mar-2024 10:16:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_Enum' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/FrameTarget.php on line 6
[23-Mar-2024 07:29:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/ID.php on line 12
[25-Mar-2024 16:13:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/LinkTypes.php on line 9
[01-Apr-2024 05:32:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_Enum' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/FrameTarget.php on line 6
[01-Apr-2024 07:40:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Length' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/MultiLength.php on line 9
[04-Apr-2024 22:51:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Nmtokens' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Class.php on line 6
[05-Apr-2024 00:09:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Nmtokens.php on line 6
[05-Apr-2024 00:44:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Color.php on line 6
[05-Apr-2024 01:11:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Pixels.php on line 6
[05-Apr-2024 01:23:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Bool.php on line 6
[06-Apr-2024 07:56:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Nmtokens' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Class.php on line 6
[12-Apr-2024 02:08:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Length' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/MultiLength.php on line 9
[12-Apr-2024 12:27:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Pixels.php on line 6
[13-Apr-2024 10:08:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Pixels' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Length.php on line 10
[13-Apr-2024 17:31:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Color.php on line 6
[15-Apr-2024 20:35:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Bool.php on line 6
[16-Apr-2024 02:39:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Pixels.php on line 6
[17-Apr-2024 04:57:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Nmtokens.php on line 6
[05-May-2024 02:42:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Pixels.php on line 6
[05-May-2024 02:42:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Nmtokens.php on line 6
[05-May-2024 02:42:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/LinkTypes.php on line 9
[05-May-2024 02:42:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Pixels' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Length.php on line 10
[05-May-2024 02:42:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/ID.php on line 12
[05-May-2024 02:42:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Color.php on line 6
[05-May-2024 02:42:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Nmtokens' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Class.php on line 6
[05-May-2024 02:42:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Bool.php on line 6
[05-May-2024 02:54:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Length' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/MultiLength.php on line 9
[05-May-2024 02:55:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_Enum' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/FrameTarget.php on line 6
[05-May-2024 12:37:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Pixels.php on line 6
[05-May-2024 12:37:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Nmtokens.php on line 6
[05-May-2024 12:37:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/LinkTypes.php on line 9
[05-May-2024 12:37:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Pixels' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Length.php on line 10
[05-May-2024 12:37:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/ID.php on line 12
[05-May-2024 12:37:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Color.php on line 6
[05-May-2024 12:37:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Nmtokens' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Class.php on line 6
[05-May-2024 12:37:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Bool.php on line 6
[05-May-2024 12:49:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Length' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/MultiLength.php on line 9
[05-May-2024 12:49:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_Enum' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/FrameTarget.php on line 6
[05-May-2024 17:22:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Nmtokens' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Class.php on line 6
[05-May-2024 18:56:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Pixels.php on line 6
[05-May-2024 20:35:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Color.php on line 6
[05-May-2024 21:47:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Pixels.php on line 6
[05-May-2024 21:47:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Nmtokens.php on line 6
[05-May-2024 21:47:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/LinkTypes.php on line 9
[05-May-2024 21:47:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Pixels' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Length.php on line 10
[05-May-2024 21:47:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/ID.php on line 12
[05-May-2024 21:47:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Color.php on line 6
[05-May-2024 21:47:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Nmtokens' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Class.php on line 6
[05-May-2024 21:47:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Bool.php on line 6
[05-May-2024 21:59:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Length' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/MultiLength.php on line 9
[05-May-2024 21:59:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_Enum' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/FrameTarget.php on line 6
[06-May-2024 00:44:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/ID.php on line 12
[06-May-2024 02:07:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/LinkTypes.php on line 9
[06-May-2024 04:47:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Length' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/MultiLength.php on line 9
[06-May-2024 07:47:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Nmtokens.php on line 6
[06-May-2024 07:51:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Pixels' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Length.php on line 10
[06-May-2024 09:16:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Bool.php on line 6
[06-May-2024 09:38:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_Enum' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/FrameTarget.php on line 6
[13-May-2024 12:02:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Pixels' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Length.php on line 10
[13-May-2024 12:03:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Nmtokens' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Class.php on line 6
[13-May-2024 12:07:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/ID.php on line 12
[13-May-2024 12:09:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Color.php on line 6
[13-May-2024 12:14:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Length' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/MultiLength.php on line 9
[13-May-2024 13:03:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_Enum' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/FrameTarget.php on line 6
[13-May-2024 13:12:51 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/LinkTypes.php on line 9
[14-May-2024 20:49:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Pixels.php on line 6
[14-May-2024 20:49:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Nmtokens.php on line 6
[14-May-2024 20:49:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/LinkTypes.php on line 9
[14-May-2024 20:49:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Pixels' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Length.php on line 10
[14-May-2024 20:49:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/ID.php on line 12
[14-May-2024 20:49:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Color.php on line 6
[14-May-2024 20:49:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Nmtokens' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Class.php on line 6
[14-May-2024 20:49:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Bool.php on line 6
[14-May-2024 20:58:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Length' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/MultiLength.php on line 9
[14-May-2024 20:58:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_Enum' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/FrameTarget.php on line 6
[19-May-2024 01:29:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/ID.php on line 12
[19-May-2024 10:56:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Pixels' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Length.php on line 10
[19-May-2024 11:03:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Nmtokens' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Class.php on line 6
[19-May-2024 12:24:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Color.php on line 6
[21-May-2024 00:37:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/LinkTypes.php on line 9
[24-May-2024 10:18:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/ID.php on line 12
[28-May-2024 13:13:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_Enum' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/FrameTarget.php on line 6
[31-May-2024 01:45:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Nmtokens' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Class.php on line 6
[31-May-2024 20:37:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Length' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/MultiLength.php on line 9
[01-Jun-2024 13:28:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Pixels.php on line 6
[01-Jun-2024 17:08:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Bool.php on line 6
[04-Jun-2024 20:05:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Color.php on line 6
[04-Jun-2024 21:54:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Pixels' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Length.php on line 10
[10-Jun-2024 10:07:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Nmtokens.php on line 6
[14-Jun-2024 14:48:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Pixels' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Length.php on line 10
[14-Jun-2024 14:50:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Nmtokens' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Class.php on line 6
[14-Jun-2024 14:51:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_Enum' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/FrameTarget.php on line 6
[14-Jun-2024 14:55:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/ID.php on line 12
[14-Jun-2024 15:05:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Color.php on line 6
[14-Jun-2024 15:16:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/LinkTypes.php on line 9
[14-Jun-2024 15:47:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Nmtokens.php on line 6
[14-Jun-2024 15:52:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Bool.php on line 6
[14-Jun-2024 15:53:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Pixels.php on line 6
[14-Jun-2024 15:58:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Length' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/MultiLength.php on line 9
[18-Jun-2024 23:03:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Pixels.php on line 6
[18-Jun-2024 23:03:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Nmtokens.php on line 6
[18-Jun-2024 23:03:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/LinkTypes.php on line 9
[18-Jun-2024 23:03:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Pixels' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Length.php on line 10
[18-Jun-2024 23:03:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/ID.php on line 12
[18-Jun-2024 23:03:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Color.php on line 6
[18-Jun-2024 23:03:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Nmtokens' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Class.php on line 6
[18-Jun-2024 23:03:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Bool.php on line 6
[18-Jun-2024 23:09:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Length' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/MultiLength.php on line 9
[18-Jun-2024 23:09:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_Enum' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/FrameTarget.php on line 6
[19-Jun-2024 08:01:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Pixels.php on line 6
[19-Jun-2024 08:01:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Nmtokens.php on line 6
[19-Jun-2024 08:01:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/LinkTypes.php on line 9
[19-Jun-2024 08:01:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Pixels' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Length.php on line 10
[19-Jun-2024 08:01:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/ID.php on line 12
[19-Jun-2024 08:01:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Color.php on line 6
[19-Jun-2024 08:01:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Nmtokens' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Class.php on line 6
[19-Jun-2024 08:01:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Bool.php on line 6
[19-Jun-2024 08:07:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Length' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/MultiLength.php on line 9
[19-Jun-2024 08:07:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_Enum' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/FrameTarget.php on line 6
[19-Jun-2024 20:50:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Pixels.php on line 6
[19-Jun-2024 20:50:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Nmtokens.php on line 6
[19-Jun-2024 20:50:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/LinkTypes.php on line 9
[19-Jun-2024 20:50:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Pixels' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Length.php on line 10
[19-Jun-2024 20:50:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/ID.php on line 12
[19-Jun-2024 20:50:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Color.php on line 6
[19-Jun-2024 20:50:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Nmtokens' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Class.php on line 6
[19-Jun-2024 20:51:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Bool.php on line 6
[19-Jun-2024 20:56:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Length' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/MultiLength.php on line 9
[19-Jun-2024 20:56:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_Enum' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/FrameTarget.php on line 6
[20-Jun-2024 23:32:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Pixels.php on line 6
[21-Jun-2024 06:25:51 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Length' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/MultiLength.php on line 9
[21-Jun-2024 06:55:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/ID.php on line 12
[21-Jun-2024 10:52:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_Enum' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/FrameTarget.php on line 6
[21-Jun-2024 15:06:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Color.php on line 6
[21-Jun-2024 16:23:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Pixels' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Length.php on line 10
[21-Jun-2024 19:20:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Nmtokens' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Class.php on line 6
[21-Jun-2024 22:36:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Bool.php on line 6
[22-Jun-2024 00:12:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/LinkTypes.php on line 9
[22-Jun-2024 00:15:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Nmtokens.php on line 6
[24-Jun-2024 08:09:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Color.php on line 6
[28-Jun-2024 04:17:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Pixels.php on line 6
[29-Jun-2024 09:08:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/LinkTypes.php on line 9
[30-Jun-2024 03:28:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/LinkTypes.php on line 9
[02-Jul-2024 09:27:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Pixels' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Length.php on line 10
[04-Jul-2024 21:56:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/ID.php on line 12
[04-Jul-2024 22:41:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_Enum' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/FrameTarget.php on line 6
[05-Jul-2024 03:08:51 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Pixels.php on line 6
[06-Jul-2024 09:42:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/LinkTypes.php on line 9
[08-Jul-2024 19:26:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Pixels' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Length.php on line 10
[09-Jul-2024 09:57:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Color.php on line 6
[10-Jul-2024 00:08:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Bool.php on line 6
[10-Jul-2024 00:43:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Nmtokens' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Class.php on line 6
[10-Jul-2024 02:36:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Pixels.php on line 6
[10-Jul-2024 02:57:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Pixels' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Length.php on line 10
[10-Jul-2024 05:30:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Length' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/MultiLength.php on line 9
[11-Jul-2024 03:26:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Pixels.php on line 6
[15-Jul-2024 13:48:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Nmtokens.php on line 6
[22-Jul-2024 20:52:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Pixels.php on line 6
[22-Jul-2024 20:52:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Nmtokens.php on line 6
[22-Jul-2024 20:53:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/LinkTypes.php on line 9
[22-Jul-2024 20:53:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Pixels' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Length.php on line 10
[22-Jul-2024 20:53:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/ID.php on line 12
[22-Jul-2024 20:53:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Color.php on line 6
[22-Jul-2024 20:53:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Nmtokens' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Class.php on line 6
[22-Jul-2024 20:53:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Bool.php on line 6
[22-Jul-2024 21:05:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Length' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/MultiLength.php on line 9
[22-Jul-2024 21:05:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_Enum' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/FrameTarget.php on line 6
[23-Jul-2024 03:56:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Pixels' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Length.php on line 10
[23-Jul-2024 04:05:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Length' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/MultiLength.php on line 9
[24-Jul-2024 02:44:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Bool.php on line 6
[24-Jul-2024 04:37:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Nmtokens' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Class.php on line 6
[24-Jul-2024 05:54:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Color.php on line 6
[26-Jul-2024 01:26:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/ID.php on line 12
[26-Jul-2024 01:51:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Nmtokens.php on line 6
[29-Jul-2024 01:04:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Pixels' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Length.php on line 10
[29-Jul-2024 01:45:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Length' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/MultiLength.php on line 9
[29-Jul-2024 05:16:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Nmtokens' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Class.php on line 6
[29-Jul-2024 08:36:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Pixels' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Length.php on line 10
[29-Jul-2024 09:32:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/ID.php on line 12
[29-Jul-2024 09:52:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Length' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/MultiLength.php on line 9
[29-Jul-2024 10:47:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Nmtokens.php on line 6
[29-Jul-2024 12:53:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Pixels.php on line 6
[29-Jul-2024 14:24:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Color.php on line 6
[29-Jul-2024 20:22:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Bool.php on line 6
[29-Jul-2024 21:25:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Nmtokens' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Class.php on line 6
[29-Jul-2024 21:44:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Color.php on line 6
[30-Jul-2024 01:13:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/LinkTypes.php on line 9
[30-Jul-2024 09:06:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_Enum' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/FrameTarget.php on line 6
[30-Jul-2024 12:36:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Bool.php on line 6
[31-Jul-2024 22:11:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Nmtokens.php on line 6
[31-Jul-2024 23:06:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/ID.php on line 12
[04-Aug-2024 19:54:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Bool.php on line 6
[04-Aug-2024 20:40:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Color.php on line 6
[04-Aug-2024 20:47:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Nmtokens' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Class.php on line 6
[07-Aug-2024 08:08:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/ID.php on line 12
[07-Aug-2024 08:15:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Nmtokens.php on line 6
[10-Aug-2024 02:21:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/LinkTypes.php on line 9
[10-Aug-2024 20:12:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Nmtokens' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Class.php on line 6
[11-Aug-2024 00:02:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_Enum' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/FrameTarget.php on line 6
[11-Aug-2024 00:34:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/ID.php on line 12
[11-Aug-2024 01:20:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Bool.php on line 6
[13-Aug-2024 01:51:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/ID.php on line 12
[13-Aug-2024 11:26:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Nmtokens.php on line 6
[15-Aug-2024 13:13:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Pixels.php on line 6
[15-Aug-2024 22:19:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Length' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/MultiLength.php on line 9
[16-Aug-2024 09:24:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Pixels' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Length.php on line 10
[16-Aug-2024 10:11:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Nmtokens' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Class.php on line 6
[16-Aug-2024 12:00:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Bool.php on line 6
[21-Aug-2024 18:17:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Color.php on line 6
[22-Aug-2024 08:24:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Nmtokens.php on line 6
[25-Aug-2024 20:58:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Nmtokens' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Class.php on line 6
[26-Aug-2024 00:02:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Bool.php on line 6
[26-Aug-2024 07:39:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/LinkTypes.php on line 9
[26-Aug-2024 17:01:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_Enum' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/FrameTarget.php on line 6
[28-Aug-2024 02:25:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/ID.php on line 12
[28-Aug-2024 07:46:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Nmtokens.php on line 6
[31-Aug-2024 20:45:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Nmtokens' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Class.php on line 6
[31-Aug-2024 22:47:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Bool.php on line 6
[01-Sep-2024 16:40:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_Enum' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/FrameTarget.php on line 6
[02-Sep-2024 00:53:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Pixels.php on line 6
[02-Sep-2024 00:53:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Nmtokens.php on line 6
[02-Sep-2024 00:53:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/LinkTypes.php on line 9
[02-Sep-2024 00:53:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Pixels' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Length.php on line 10
[02-Sep-2024 00:53:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/ID.php on line 12
[02-Sep-2024 00:53:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Color.php on line 6
[02-Sep-2024 00:53:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Nmtokens' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Class.php on line 6
[02-Sep-2024 00:53:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Bool.php on line 6
[02-Sep-2024 01:05:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Length' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/MultiLength.php on line 9
[02-Sep-2024 01:05:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_Enum' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/FrameTarget.php on line 6
[02-Sep-2024 20:39:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Bool.php on line 6
[03-Sep-2024 00:35:02 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Color.php on line 6
[03-Sep-2024 01:01:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Pixels.php on line 6
[04-Sep-2024 06:22:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Color.php on line 6
[04-Sep-2024 20:03:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Bool.php on line 6
[05-Sep-2024 00:20:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Nmtokens.php on line 6
[05-Sep-2024 00:54:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Pixels' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Length.php on line 10
[05-Sep-2024 01:55:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Pixels.php on line 6
[05-Sep-2024 04:29:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/ID.php on line 12
[05-Sep-2024 08:10:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/LinkTypes.php on line 9
[05-Sep-2024 09:34:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/LinkTypes.php on line 9
[05-Sep-2024 15:45:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Nmtokens' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Class.php on line 6
[05-Sep-2024 18:12:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Length' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/MultiLength.php on line 9
[05-Sep-2024 20:24:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_Enum' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/FrameTarget.php on line 6
[07-Sep-2024 18:57:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_Enum' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/FrameTarget.php on line 6
[08-Sep-2024 21:31:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/LinkTypes.php on line 9
[08-Sep-2024 21:53:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Length' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/MultiLength.php on line 9
[09-Sep-2024 02:35:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/ID.php on line 12
[09-Sep-2024 08:31:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Pixels' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Length.php on line 10
[12-Sep-2024 00:23:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Pixels.php on line 6
[12-Sep-2024 00:23:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Nmtokens.php on line 6
[12-Sep-2024 00:23:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/LinkTypes.php on line 9
[12-Sep-2024 00:23:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Pixels' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Length.php on line 10
[12-Sep-2024 00:24:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/ID.php on line 12
[12-Sep-2024 00:24:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Color.php on line 6
[12-Sep-2024 00:24:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Nmtokens' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Class.php on line 6
[12-Sep-2024 00:24:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Bool.php on line 6
[12-Sep-2024 00:36:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Length' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/MultiLength.php on line 9
[12-Sep-2024 00:36:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_Enum' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/FrameTarget.php on line 6
[12-Sep-2024 18:19:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/ID.php on line 12
[12-Sep-2024 20:30:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/ID.php on line 12
[13-Sep-2024 07:26:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Pixels.php on line 6
[13-Sep-2024 07:26:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Nmtokens.php on line 6
[13-Sep-2024 07:26:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/LinkTypes.php on line 9
[13-Sep-2024 07:26:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Pixels' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Length.php on line 10
[13-Sep-2024 07:26:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/ID.php on line 12
[13-Sep-2024 07:27:02 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Color.php on line 6
[13-Sep-2024 07:27:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Nmtokens' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Class.php on line 6
[13-Sep-2024 07:27:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Bool.php on line 6
[13-Sep-2024 07:27:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Pixels.php on line 6
[13-Sep-2024 07:27:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Nmtokens.php on line 6
[13-Sep-2024 07:27:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/LinkTypes.php on line 9
[13-Sep-2024 07:27:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Pixels' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Length.php on line 10
[13-Sep-2024 07:27:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/ID.php on line 12
[13-Sep-2024 07:27:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Color.php on line 6
[13-Sep-2024 07:27:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Nmtokens' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Class.php on line 6
[13-Sep-2024 07:27:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Bool.php on line 6
[13-Sep-2024 07:51:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Length' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/MultiLength.php on line 9
[13-Sep-2024 07:51:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_Enum' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/FrameTarget.php on line 6
[13-Sep-2024 07:51:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Length' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/MultiLength.php on line 9
[13-Sep-2024 07:51:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_Enum' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/FrameTarget.php on line 6
[13-Sep-2024 18:52:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Pixels' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Length.php on line 10
[13-Sep-2024 19:04:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Pixels' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Length.php on line 10
[14-Sep-2024 01:04:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Length' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/MultiLength.php on line 9
[15-Sep-2024 03:13:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/LinkTypes.php on line 9
[16-Sep-2024 20:10:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/LinkTypes.php on line 9
[17-Sep-2024 06:28:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_Enum' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/FrameTarget.php on line 6
[18-Sep-2024 03:59:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/ID.php on line 12
[21-Sep-2024 07:54:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/LinkTypes.php on line 9
[21-Sep-2024 10:47:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Length' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/MultiLength.php on line 9
[21-Sep-2024 11:10:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Nmtokens' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Class.php on line 6
[22-Sep-2024 00:55:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Bool.php on line 6
[22-Sep-2024 02:33:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Pixels' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Length.php on line 10
[22-Sep-2024 07:31:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Pixels.php on line 6
[23-Sep-2024 10:57:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Bool.php on line 6
[23-Sep-2024 18:47:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Pixels.php on line 6
[24-Sep-2024 23:37:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Bool.php on line 6
[25-Sep-2024 06:44:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Nmtokens' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Class.php on line 6
[25-Sep-2024 17:15:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/LinkTypes.php on line 9
[25-Sep-2024 22:09:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Nmtokens.php on line 6
[26-Sep-2024 06:11:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Nmtokens' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Class.php on line 6
[27-Sep-2024 02:29:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Nmtokens' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Class.php on line 6
[27-Sep-2024 17:36:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/LinkTypes.php on line 9
[30-Sep-2024 14:14:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Color.php on line 6
[02-Oct-2024 03:24:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Bool.php on line 6
[05-Oct-2024 11:08:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Nmtokens.php on line 6
[05-Oct-2024 12:36:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Color.php on line 6
[05-Oct-2024 13:45:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Nmtokens.php on line 6
[06-Oct-2024 22:59:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/LinkTypes.php on line 9
[06-Oct-2024 23:11:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Nmtokens' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Class.php on line 6
[09-Oct-2024 10:50:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Pixels.php on line 6
[10-Oct-2024 12:05:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_Enum' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/FrameTarget.php on line 6
[10-Oct-2024 22:01:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Bool.php on line 6
[12-Oct-2024 18:27:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Bool.php on line 6
[13-Oct-2024 03:18:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Pixels.php on line 6
[13-Oct-2024 06:41:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Color.php on line 6
[13-Oct-2024 13:59:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/ID.php on line 12
[13-Oct-2024 16:40:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Nmtokens.php on line 6
[13-Oct-2024 19:05:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_Enum' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/FrameTarget.php on line 6
[14-Oct-2024 06:20:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Nmtokens' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Class.php on line 6
[14-Oct-2024 07:33:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Nmtokens' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Class.php on line 6
[14-Oct-2024 08:49:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Nmtokens' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Class.php on line 6
[14-Oct-2024 09:58:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Pixels' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Length.php on line 10
[14-Oct-2024 10:19:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Length' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/MultiLength.php on line 9
[14-Oct-2024 10:20:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/LinkTypes.php on line 9
[16-Oct-2024 07:33:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_Enum' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/FrameTarget.php on line 6
[18-Oct-2024 18:19:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/ID.php on line 12
[18-Oct-2024 18:20:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_Enum' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/FrameTarget.php on line 6
[18-Oct-2024 18:25:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Pixels' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Length.php on line 10
[18-Oct-2024 18:28:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Bool.php on line 6
[18-Oct-2024 18:29:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Nmtokens.php on line 6
[18-Oct-2024 18:30:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Nmtokens' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Class.php on line 6
[18-Oct-2024 18:30:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Length' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/MultiLength.php on line 9
[18-Oct-2024 18:31:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Pixels.php on line 6
[20-Oct-2024 04:06:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Pixels.php on line 6
[20-Oct-2024 12:08:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/LinkTypes.php on line 9
[21-Oct-2024 21:53:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Nmtokens' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Class.php on line 6
[23-Oct-2024 13:01:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_Enum' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/FrameTarget.php on line 6
[24-Oct-2024 09:04:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/LinkTypes.php on line 9
[24-Oct-2024 14:07:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Color.php on line 6
[25-Oct-2024 11:35:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/ID.php on line 12
[25-Oct-2024 17:20:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_Enum' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/FrameTarget.php on line 6
[26-Oct-2024 20:15:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/ID.php on line 12
[29-Oct-2024 05:15:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Bool.php on line 6
[29-Oct-2024 08:25:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Length' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/MultiLength.php on line 9
[30-Oct-2024 11:52:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Pixels.php on line 6
[30-Oct-2024 14:18:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Nmtokens' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Class.php on line 6
[30-Oct-2024 20:22:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Pixels' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Length.php on line 10
[31-Oct-2024 06:11:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Nmtokens.php on line 6
[31-Oct-2024 06:22:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Bool.php on line 6
[31-Oct-2024 15:14:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Pixels.php on line 6
[31-Oct-2024 15:14:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Nmtokens.php on line 6
[31-Oct-2024 15:14:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/LinkTypes.php on line 9
[31-Oct-2024 15:14:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Pixels' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Length.php on line 10
[31-Oct-2024 15:14:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/ID.php on line 12
[31-Oct-2024 15:14:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Color.php on line 6
[31-Oct-2024 15:14:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Nmtokens' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Class.php on line 6
[31-Oct-2024 15:15:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Bool.php on line 6
[31-Oct-2024 15:40:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Length' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/MultiLength.php on line 9
[31-Oct-2024 15:40:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_Enum' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/FrameTarget.php on line 6
[01-Nov-2024 00:28:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_Enum' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/FrameTarget.php on line 6
[01-Nov-2024 16:41:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Length' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/MultiLength.php on line 9
[01-Nov-2024 20:40:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/ID.php on line 12
[03-Nov-2024 07:30:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Length' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/MultiLength.php on line 9
[10-Nov-2024 12:22:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Pixels.php on line 6
[10-Nov-2024 12:22:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Nmtokens.php on line 6
[10-Nov-2024 12:22:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/LinkTypes.php on line 9
[10-Nov-2024 12:22:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Pixels' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Length.php on line 10
[10-Nov-2024 12:22:51 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/ID.php on line 12
[10-Nov-2024 12:22:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Color.php on line 6
[10-Nov-2024 12:22:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Nmtokens' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Class.php on line 6
[10-Nov-2024 12:23:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Bool.php on line 6
[10-Nov-2024 12:23:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_HTML_Length' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/MultiLength.php on line 9
[10-Nov-2024 12:23:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_Enum' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/FrameTarget.php on line 6
htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Length.php 0000644 00000002342 14716425661 0017240 0 ustar 00 100) {
return '100%';
}
return ((string)$points) . '%';
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Color.php 0000644 00000002253 14716425661 0017076 0 ustar 00 get('Core.ColorKeywords');
}
$string = trim($string);
if (empty($string)) {
return false;
}
$lower = strtolower($string);
if (isset($colors[$lower])) {
return $colors[$lower];
}
if ($string[0] === '#') {
$hex = substr($string, 1);
} else {
$hex = $string;
}
$length = strlen($hex);
if ($length !== 3 && $length !== 6) {
return false;
}
if (!ctype_xdigit($hex)) {
return false;
}
if ($length === 3) {
$hex = $hex[0] . $hex[0] . $hex[1] . $hex[1] . $hex[2] . $hex[2];
}
return "#$hex";
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Bool.php 0000644 00000001540 14716425661 0016711 0 ustar 00 name = $name;
}
/**
* @param string $string
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return bool|string
*/
public function validate($string, $config, $context)
{
return $this->name;
}
/**
* @param string $string Name of attribute
* @return HTMLPurifier_AttrDef_HTML_Bool
*/
public function make($string)
{
return new HTMLPurifier_AttrDef_HTML_Bool($string);
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/AttrDef/HTML/MultiLength.php 0000644 00000002464 14716425661 0020260 0 ustar 00 selector = $selector;
}
/**
* @param string $id
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return bool|string
*/
public function validate($id, $config, $context)
{
if (!$this->selector && !$config->get('Attr.EnableID')) {
return false;
}
$id = trim($id); // trim it first
if ($id === '') {
return false;
}
$prefix = $config->get('Attr.IDPrefix');
if ($prefix !== '') {
$prefix .= $config->get('Attr.IDPrefixLocal');
// prevent re-appending the prefix
if (strpos($id, $prefix) !== 0) {
$id = $prefix . $id;
}
} elseif ($config->get('Attr.IDPrefixLocal') !== '') {
trigger_error(
'%Attr.IDPrefixLocal cannot be used unless ' .
'%Attr.IDPrefix is set',
E_USER_WARNING
);
}
if (!$this->selector) {
$id_accumulator =& $context->get('IDAccumulator');
if (isset($id_accumulator->ids[$id])) {
return false;
}
}
// we purposely avoid using regex, hopefully this is faster
if ($config->get('Attr.ID.HTML5') === true) {
if (preg_match('/[\t\n\x0b\x0c ]/', $id)) {
return false;
}
} else {
if (ctype_alpha($id)) {
// OK
} else {
if (!ctype_alpha(@$id[0])) {
return false;
}
// primitive style of regexps, I suppose
$trim = trim(
$id,
'A..Za..z0..9:-._'
);
if ($trim !== '') {
return false;
}
}
}
$regexp = $config->get('Attr.IDBlacklistRegexp');
if ($regexp && preg_match($regexp, $id)) {
return false;
}
if (!$this->selector) {
$id_accumulator->add($id);
}
// if no change was made to the ID, return the result
// else, return the new id if stripping whitespace made it
// valid, or return false.
return $id;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/AttrDef/Integer.php 0000644 00000004763 14716425661 0016661 0 ustar 00 negative = $negative;
$this->zero = $zero;
$this->positive = $positive;
}
/**
* @param string $integer
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return bool|string
*/
public function validate($integer, $config, $context)
{
$integer = $this->parseCDATA($integer);
if ($integer === '') {
return false;
}
// we could possibly simply typecast it to integer, but there are
// certain fringe cases that must not return an integer.
// clip leading sign
if ($this->negative && $integer[0] === '-') {
$digits = substr($integer, 1);
if ($digits === '0') {
$integer = '0';
} // rm minus sign for zero
} elseif ($this->positive && $integer[0] === '+') {
$digits = $integer = substr($integer, 1); // rm unnecessary plus
} else {
$digits = $integer;
}
// test if it's numeric
if (!ctype_digit($digits)) {
return false;
}
// perform scope tests
if (!$this->zero && $integer == 0) {
return false;
}
if (!$this->positive && $integer > 0) {
return false;
}
if (!$this->negative && $integer < 0) {
return false;
}
return $integer;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/AttrDef/Enum.php 0000644 00000004243 14716425661 0016161 0 ustar 00 valid_values = array_flip($valid_values);
$this->case_sensitive = $case_sensitive;
}
/**
* @param string $string
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return bool|string
*/
public function validate($string, $config, $context)
{
$string = trim($string);
if (!$this->case_sensitive) {
// we may want to do full case-insensitive libraries
$string = ctype_lower($string) ? $string : strtolower($string);
}
$result = isset($this->valid_values[$string]);
return $result ? $string : false;
}
/**
* @param string $string In form of comma-delimited list of case-insensitive
* valid values. Example: "foo,bar,baz". Prepend "s:" to make
* case sensitive
* @return HTMLPurifier_AttrDef_Enum
*/
public function make($string)
{
if (strlen($string) > 2 && $string[0] == 's' && $string[1] == ':') {
$string = substr($string, 2);
$sensitive = true;
} else {
$sensitive = false;
}
$values = explode(',', $string);
return new HTMLPurifier_AttrDef_Enum($values, $sensitive);
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/AttrDef/CSS/URI.php 0000644 00000005010 14716425661 0016335 0 ustar 00 parseCDATA($uri_string);
if (strpos($uri_string, 'url(') !== 0) {
return false;
}
$uri_string = substr($uri_string, 4);
if (strlen($uri_string) == 0) {
return false;
}
$new_length = strlen($uri_string) - 1;
if ($uri_string[$new_length] != ')') {
return false;
}
$uri = trim(substr($uri_string, 0, $new_length));
if (!empty($uri) && ($uri[0] == "'" || $uri[0] == '"')) {
$quote = $uri[0];
$new_length = strlen($uri) - 1;
if ($uri[$new_length] !== $quote) {
return false;
}
$uri = substr($uri, 1, $new_length - 1);
}
$uri = $this->expandCSSEscape($uri);
$result = parent::validate($uri, $config, $context);
if ($result === false) {
return false;
}
// extra sanity check; should have been done by URI
$result = str_replace(array('"', "\\", "\n", "\x0c", "\r"), "", $result);
// suspicious characters are ()'; we're going to percent encode
// them for safety.
$result = str_replace(array('(', ')', "'"), array('%28', '%29', '%27'), $result);
// there's an extra bug where ampersands lose their escaping on
// an innerHTML cycle, so a very unlucky query parameter could
// then change the meaning of the URL. Unfortunately, there's
// not much we can do about that...
return "url(\"$result\")";
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/AttrDef/CSS/AlphaValue.php 0000644 00000001431 14716425661 0017723 0 ustar 00 1.0) {
$result = '1';
}
return $result;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Background.php 0000644 00000006210 14716425661 0017760 0 ustar 00 getCSSDefinition();
$this->info['background-color'] = $def->info['background-color'];
$this->info['background-image'] = $def->info['background-image'];
$this->info['background-repeat'] = $def->info['background-repeat'];
$this->info['background-attachment'] = $def->info['background-attachment'];
$this->info['background-position'] = $def->info['background-position'];
}
/**
* @param string $string
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return bool|string
*/
public function validate($string, $config, $context)
{
// regular pre-processing
$string = $this->parseCDATA($string);
if ($string === '') {
return false;
}
// munge rgb() decl if necessary
$string = $this->mungeRgb($string);
// assumes URI doesn't have spaces in it
$bits = explode(' ', $string); // bits to process
$caught = array();
$caught['color'] = false;
$caught['image'] = false;
$caught['repeat'] = false;
$caught['attachment'] = false;
$caught['position'] = false;
$i = 0; // number of catches
foreach ($bits as $bit) {
if ($bit === '') {
continue;
}
foreach ($caught as $key => $status) {
if ($key != 'position') {
if ($status !== false) {
continue;
}
$r = $this->info['background-' . $key]->validate($bit, $config, $context);
} else {
$r = $bit;
}
if ($r === false) {
continue;
}
if ($key == 'position') {
if ($caught[$key] === false) {
$caught[$key] = '';
}
$caught[$key] .= $r . ' ';
} else {
$caught[$key] = $r;
}
$i++;
break;
}
}
if (!$i) {
return false;
}
if ($caught['position'] !== false) {
$caught['position'] = $this->info['background-position']->
validate($caught['position'], $config, $context);
}
$ret = array();
foreach ($caught as $value) {
if ($value === false) {
continue;
}
$ret[] = $value;
}
if (empty($ret)) {
return false;
}
return implode(' ', $ret);
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/AttrDef/CSS/FontFamily.php 0000644 00000022301 14716425661 0017750 0 ustar 00 mask = '_- ';
for ($c = 'a'; $c <= 'z'; $c++) {
$this->mask .= $c;
}
for ($c = 'A'; $c <= 'Z'; $c++) {
$this->mask .= $c;
}
for ($c = '0'; $c <= '9'; $c++) {
$this->mask .= $c;
} // cast-y, but should be fine
// special bytes used by UTF-8
for ($i = 0x80; $i <= 0xFF; $i++) {
// We don't bother excluding invalid bytes in this range,
// because the our restriction of well-formed UTF-8 will
// prevent these from ever occurring.
$this->mask .= chr($i);
}
/*
PHP's internal strcspn implementation is
O(length of string * length of mask), making it inefficient
for large masks. However, it's still faster than
preg_match 8)
for (p = s1;;) {
spanp = s2;
do {
if (*spanp == c || p == s1_end) {
return p - s1;
}
} while (spanp++ < (s2_end - 1));
c = *++p;
}
*/
// possible optimization: invert the mask.
}
/**
* @param string $string
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return bool|string
*/
public function validate($string, $config, $context)
{
static $generic_names = array(
'serif' => true,
'sans-serif' => true,
'monospace' => true,
'fantasy' => true,
'cursive' => true
);
$allowed_fonts = $config->get('CSS.AllowedFonts');
// assume that no font names contain commas in them
$fonts = explode(',', $string);
$final = '';
foreach ($fonts as $font) {
$font = trim($font);
if ($font === '') {
continue;
}
// match a generic name
if (isset($generic_names[$font])) {
if ($allowed_fonts === null || isset($allowed_fonts[$font])) {
$final .= $font . ', ';
}
continue;
}
// match a quoted name
if ($font[0] === '"' || $font[0] === "'") {
$length = strlen($font);
if ($length <= 2) {
continue;
}
$quote = $font[0];
if ($font[$length - 1] !== $quote) {
continue;
}
$font = substr($font, 1, $length - 2);
}
$font = $this->expandCSSEscape($font);
// $font is a pure representation of the font name
if ($allowed_fonts !== null && !isset($allowed_fonts[$font])) {
continue;
}
if (ctype_alnum($font) && $font !== '') {
// very simple font, allow it in unharmed
$final .= $font . ', ';
continue;
}
// bugger out on whitespace. form feed (0C) really
// shouldn't show up regardless
$font = str_replace(array("\n", "\t", "\r", "\x0C"), ' ', $font);
// Here, there are various classes of characters which need
// to be treated differently:
// - Alphanumeric characters are essentially safe. We
// handled these above.
// - Spaces require quoting, though most parsers will do
// the right thing if there aren't any characters that
// can be misinterpreted
// - Dashes rarely occur, but they fairly unproblematic
// for parsing/rendering purposes.
// The above characters cover the majority of Western font
// names.
// - Arbitrary Unicode characters not in ASCII. Because
// most parsers give little thought to Unicode, treatment
// of these codepoints is basically uniform, even for
// punctuation-like codepoints. These characters can
// show up in non-Western pages and are supported by most
// major browsers, for example: "MS 明朝" is a
// legitimate font-name
// . See
// the CSS3 spec for more examples:
//
// You can see live samples of these on the Internet:
//
// However, most of these fonts have ASCII equivalents:
// for example, 'MS Mincho', and it's considered
// professional to use ASCII font names instead of
// Unicode font names. Thanks Takeshi Terada for
// providing this information.
// The following characters, to my knowledge, have not been
// used to name font names.
// - Single quote. While theoretically you might find a
// font name that has a single quote in its name (serving
// as an apostrophe, e.g. Dave's Scribble), I haven't
// been able to find any actual examples of this.
// Internet Explorer's cssText translation (which I
// believe is invoked by innerHTML) normalizes any
// quoting to single quotes, and fails to escape single
// quotes. (Note that this is not IE's behavior for all
// CSS properties, just some sort of special casing for
// font-family). So a single quote *cannot* be used
// safely in the font-family context if there will be an
// innerHTML/cssText translation. Note that Firefox 3.x
// does this too.
// - Double quote. In IE, these get normalized to
// single-quotes, no matter what the encoding. (Fun
// fact, in IE8, the 'content' CSS property gained
// support, where they special cased to preserve encoded
// double quotes, but still translate unadorned double
// quotes into single quotes.) So, because their
// fixpoint behavior is identical to single quotes, they
// cannot be allowed either. Firefox 3.x displays
// single-quote style behavior.
// - Backslashes are reduced by one (so \\ -> \) every
// iteration, so they cannot be used safely. This shows
// up in IE7, IE8 and FF3
// - Semicolons, commas and backticks are handled properly.
// - The rest of the ASCII punctuation is handled properly.
// We haven't checked what browsers do to unadorned
// versions, but this is not important as long as the
// browser doesn't /remove/ surrounding quotes (as IE does
// for HTML).
//
// With these results in hand, we conclude that there are
// various levels of safety:
// - Paranoid: alphanumeric, spaces and dashes(?)
// - International: Paranoid + non-ASCII Unicode
// - Edgy: Everything except quotes, backslashes
// - NoJS: Standards compliance, e.g. sod IE. Note that
// with some judicious character escaping (since certain
// types of escaping doesn't work) this is theoretically
// OK as long as innerHTML/cssText is not called.
// We believe that international is a reasonable default
// (that we will implement now), and once we do more
// extensive research, we may feel comfortable with dropping
// it down to edgy.
// Edgy: alphanumeric, spaces, dashes, underscores and Unicode. Use of
// str(c)spn assumes that the string was already well formed
// Unicode (which of course it is).
if (strspn($font, $this->mask) !== strlen($font)) {
continue;
}
// Historical:
// In the absence of innerHTML/cssText, these ugly
// transforms don't pose a security risk (as \\ and \"
// might--these escapes are not supported by most browsers).
// We could try to be clever and use single-quote wrapping
// when there is a double quote present, but I have choosen
// not to implement that. (NOTE: you can reduce the amount
// of escapes by one depending on what quoting style you use)
// $font = str_replace('\\', '\\5C ', $font);
// $font = str_replace('"', '\\22 ', $font);
// $font = str_replace("'", '\\27 ', $font);
// font possibly with spaces, requires quoting
$final .= "'$font', ";
}
$final = rtrim($final, ', ');
if ($final === '') {
return false;
}
return $final;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Number.php 0000644 00000004104 14716425661 0017131 0 ustar 00 non_negative = $non_negative;
}
/**
* @param string $number
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return string|bool
* @warning Some contexts do not pass $config, $context. These
* variables should not be used without checking HTMLPurifier_Length
*/
public function validate($number, $config, $context)
{
$number = $this->parseCDATA($number);
if ($number === '') {
return false;
}
if ($number === '0') {
return '0';
}
$sign = '';
switch ($number[0]) {
case '-':
if ($this->non_negative) {
return false;
}
$sign = '-';
case '+':
$number = substr($number, 1);
}
if (ctype_digit($number)) {
$number = ltrim($number, '0');
return $number ? $sign . $number : '0';
}
// Period is the only non-numeric character allowed
if (strpos($number, '.') === false) {
return false;
}
list($left, $right) = explode('.', $number, 2);
if ($left === '' && $right === '') {
return false;
}
if ($left !== '' && !ctype_digit($left)) {
return false;
}
$left = ltrim($left, '0');
$right = rtrim($right, '0');
if ($right === '') {
return $left ? $sign . $left : '0';
} elseif (!ctype_digit($right)) {
return false;
}
return $sign . $left . '.' . $right;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ImportantDecorator.php 0000644 00000003075 14716425661 0021527 0 ustar 00 def = $def;
$this->allow = $allow;
}
/**
* Intercepts and removes !important if necessary
* @param string $string
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return bool|string
*/
public function validate($string, $config, $context)
{
// test for ! and important tokens
$string = trim($string);
$is_important = false;
// :TODO: optimization: test directly for !important and ! important
if (strlen($string) >= 9 && substr($string, -9) === 'important') {
$temp = rtrim(substr($string, 0, -9));
// use a temp, because we might want to restore important
if (strlen($temp) >= 1 && substr($temp, -1) === '!') {
$string = rtrim(substr($temp, 0, -1));
$is_important = true;
}
}
$string = $this->def->validate($string, $config, $context);
if ($this->allow && $is_important) {
$string .= ' !important';
}
return $string;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Filter.php 0000644 00000004426 14716425661 0017135 0 ustar 00 intValidator = new HTMLPurifier_AttrDef_Integer();
}
/**
* @param string $value
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return bool|string
*/
public function validate($value, $config, $context)
{
$value = $this->parseCDATA($value);
if ($value === 'none') {
return $value;
}
// if we looped this we could support multiple filters
$function_length = strcspn($value, '(');
$function = trim(substr($value, 0, $function_length));
if ($function !== 'alpha' &&
$function !== 'Alpha' &&
$function !== 'progid:DXImageTransform.Microsoft.Alpha'
) {
return false;
}
$cursor = $function_length + 1;
$parameters_length = strcspn($value, ')', $cursor);
$parameters = substr($value, $cursor, $parameters_length);
$params = explode(',', $parameters);
$ret_params = array();
$lookup = array();
foreach ($params as $param) {
list($key, $value) = explode('=', $param);
$key = trim($key);
$value = trim($value);
if (isset($lookup[$key])) {
continue;
}
if ($key !== 'opacity') {
continue;
}
$value = $this->intValidator->validate($value, $config, $context);
if ($value === false) {
continue;
}
$int = (int)$value;
if ($int > 100) {
$value = '100';
}
if ($int < 0) {
$value = '0';
}
$ret_params[] = "$key=$value";
$lookup[$key] = true;
}
$ret_parameters = implode(',', $ret_params);
$ret_function = "$function($ret_parameters)";
return $ret_function;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/AttrDef/CSS/BackgroundPosition.php 0000644 00000010106 14716425661 0021504 0 ustar 00 | | left | center | right
]
[
| | top | center | bottom
]?
] |
[ // this signifies that the vertical and horizontal adjectives
// can be arbitrarily ordered, however, there can only be two,
// one of each, or none at all
[
left | center | right
] ||
[
top | center | bottom
]
]
top, left = 0%
center, (none) = 50%
bottom, right = 100%
*/
/* QuirksMode says:
keyword + length/percentage must be ordered correctly, as per W3C
Internet Explorer and Opera, however, support arbitrary ordering. We
should fix it up.
Minor issue though, not strictly necessary.
*/
// control freaks may appreciate the ability to convert these to
// percentages or something, but it's not necessary
/**
* Validates the value of background-position.
*/
class HTMLPurifier_AttrDef_CSS_BackgroundPosition extends HTMLPurifier_AttrDef
{
/**
* @type HTMLPurifier_AttrDef_CSS_Length
*/
protected $length;
/**
* @type HTMLPurifier_AttrDef_CSS_Percentage
*/
protected $percentage;
public function __construct()
{
$this->length = new HTMLPurifier_AttrDef_CSS_Length();
$this->percentage = new HTMLPurifier_AttrDef_CSS_Percentage();
}
/**
* @param string $string
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return bool|string
*/
public function validate($string, $config, $context)
{
$string = $this->parseCDATA($string);
$bits = explode(' ', $string);
$keywords = array();
$keywords['h'] = false; // left, right
$keywords['v'] = false; // top, bottom
$keywords['ch'] = false; // center (first word)
$keywords['cv'] = false; // center (second word)
$measures = array();
$i = 0;
$lookup = array(
'top' => 'v',
'bottom' => 'v',
'left' => 'h',
'right' => 'h',
'center' => 'c'
);
foreach ($bits as $bit) {
if ($bit === '') {
continue;
}
// test for keyword
$lbit = ctype_lower($bit) ? $bit : strtolower($bit);
if (isset($lookup[$lbit])) {
$status = $lookup[$lbit];
if ($status == 'c') {
if ($i == 0) {
$status = 'ch';
} else {
$status = 'cv';
}
}
$keywords[$status] = $lbit;
$i++;
}
// test for length
$r = $this->length->validate($bit, $config, $context);
if ($r !== false) {
$measures[] = $r;
$i++;
}
// test for percentage
$r = $this->percentage->validate($bit, $config, $context);
if ($r !== false) {
$measures[] = $r;
$i++;
}
}
if (!$i) {
return false;
} // no valid values were caught
$ret = array();
// first keyword
if ($keywords['h']) {
$ret[] = $keywords['h'];
} elseif ($keywords['ch']) {
$ret[] = $keywords['ch'];
$keywords['cv'] = false; // prevent re-use: center = center center
} elseif (count($measures)) {
$ret[] = array_shift($measures);
}
if ($keywords['v']) {
$ret[] = $keywords['v'];
} elseif ($keywords['cv']) {
$ret[] = $keywords['cv'];
} elseif (count($measures)) {
$ret[] = array_shift($measures);
}
if (empty($ret)) {
return false;
}
return implode(' ', $ret);
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/AttrDef/CSS/error_log; 0000644 00000531563 14716425661 0017216 0 ustar 00 [11-Sep-2023 13:58:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Length.php on line 6
[12-Sep-2023 06:43:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/DenyElementDecorator.php on line 6
[14-Sep-2023 02:44:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Background.php on line 7
[14-Sep-2023 09:27:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Composite.php on line 12
[16-Sep-2023 20:19:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Border.php on line 6
[17-Sep-2023 06:27:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Font.php on line 6
[18-Sep-2023 06:44:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/URI.php on line 12
[19-Sep-2023 12:02:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Filter.php on line 8
[20-Sep-2023 01:42:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_CSS_Number' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/AlphaValue.php on line 3
[21-Sep-2023 15:25:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Number.php on line 6
[23-Sep-2023 04:34:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Percentage.php on line 6
[23-Sep-2023 14:35:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ImportantDecorator.php on line 6
[29-Sep-2023 03:30:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/BackgroundPosition.php on line 44
[12-Nov-2023 23:23:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Color.php on line 6
[17-Nov-2023 00:10:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Ident.php on line 6
[18-Nov-2023 15:13:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Length.php on line 6
[19-Nov-2023 07:57:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ListStyle.php on line 7
[19-Nov-2023 22:30:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Multiple.php on line 14
[22-Nov-2023 02:29:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Background.php on line 7
[22-Nov-2023 03:25:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Composite.php on line 12
[22-Nov-2023 13:55:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/DenyElementDecorator.php on line 6
[23-Nov-2023 15:13:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/FontFamily.php on line 6
[26-Nov-2023 14:51:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ImportantDecorator.php on line 6
[27-Nov-2023 00:30:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_CSS_Number' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/AlphaValue.php on line 3
[02-Dec-2023 06:36:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_CSS_Number' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/AlphaValue.php on line 3
[02-Dec-2023 06:36:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/FontFamily.php on line 6
[02-Dec-2023 06:36:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Background.php on line 7
[02-Dec-2023 06:36:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Multiple.php on line 14
[02-Dec-2023 06:36:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Number.php on line 6
[02-Dec-2023 06:36:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Border.php on line 6
[02-Dec-2023 06:36:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Length.php on line 6
[02-Dec-2023 06:36:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Font.php on line 6
[02-Dec-2023 06:36:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ListStyle.php on line 7
[02-Dec-2023 06:36:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Ident.php on line 6
[02-Dec-2023 06:36:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Filter.php on line 8
[02-Dec-2023 06:36:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Composite.php on line 12
[02-Dec-2023 06:36:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Color.php on line 6
[02-Dec-2023 06:36:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/BackgroundPosition.php on line 44
[02-Dec-2023 06:36:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/URI.php on line 12
[02-Dec-2023 06:37:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/DenyElementDecorator.php on line 6
[02-Dec-2023 06:37:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ImportantDecorator.php on line 6
[02-Dec-2023 06:37:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Percentage.php on line 6
[02-Dec-2023 06:37:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/TextDecoration.php on line 8
[02-Dec-2023 07:43:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Number.php on line 6
[02-Dec-2023 09:21:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/URI.php on line 12
[02-Dec-2023 14:57:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Font.php on line 6
[02-Dec-2023 15:17:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Filter.php on line 8
[03-Dec-2023 10:23:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Filter.php on line 8
[03-Dec-2023 10:23:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Background.php on line 7
[03-Dec-2023 10:23:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Color.php on line 6
[03-Dec-2023 10:23:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Font.php on line 6
[03-Dec-2023 10:23:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Composite.php on line 12
[03-Dec-2023 10:23:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_CSS_Number' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/AlphaValue.php on line 3
[03-Dec-2023 10:23:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Border.php on line 6
[03-Dec-2023 10:23:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Percentage.php on line 6
[03-Dec-2023 10:23:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/DenyElementDecorator.php on line 6
[03-Dec-2023 10:23:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Length.php on line 6
[03-Dec-2023 10:23:51 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ListStyle.php on line 7
[03-Dec-2023 10:23:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/URI.php on line 12
[03-Dec-2023 10:23:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Ident.php on line 6
[03-Dec-2023 10:23:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/BackgroundPosition.php on line 44
[03-Dec-2023 10:24:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Multiple.php on line 14
[03-Dec-2023 10:24:02 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/FontFamily.php on line 6
[03-Dec-2023 10:24:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ImportantDecorator.php on line 6
[03-Dec-2023 10:24:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Number.php on line 6
[03-Dec-2023 10:24:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/TextDecoration.php on line 8
[03-Dec-2023 13:15:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_CSS_Number' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/AlphaValue.php on line 3
[03-Dec-2023 13:15:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/FontFamily.php on line 6
[03-Dec-2023 13:15:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Color.php on line 6
[03-Dec-2023 13:15:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Composite.php on line 12
[03-Dec-2023 13:15:51 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Background.php on line 7
[03-Dec-2023 13:15:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Length.php on line 6
[03-Dec-2023 13:15:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Filter.php on line 8
[03-Dec-2023 13:15:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Font.php on line 6
[03-Dec-2023 13:15:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Ident.php on line 6
[03-Dec-2023 13:16:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Border.php on line 6
[03-Dec-2023 13:16:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/URI.php on line 12
[03-Dec-2023 13:16:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Number.php on line 6
[03-Dec-2023 13:16:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/BackgroundPosition.php on line 44
[03-Dec-2023 13:16:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/DenyElementDecorator.php on line 6
[03-Dec-2023 13:16:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Percentage.php on line 6
[03-Dec-2023 13:16:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Multiple.php on line 14
[03-Dec-2023 13:16:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ListStyle.php on line 7
[03-Dec-2023 13:16:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ImportantDecorator.php on line 6
[03-Dec-2023 13:16:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/TextDecoration.php on line 8
[03-Dec-2023 14:09:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Color.php on line 6
[03-Dec-2023 14:09:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Border.php on line 6
[03-Dec-2023 14:09:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Background.php on line 7
[03-Dec-2023 14:09:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Composite.php on line 12
[03-Dec-2023 14:09:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_CSS_Number' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/AlphaValue.php on line 3
[03-Dec-2023 14:09:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Multiple.php on line 14
[03-Dec-2023 14:09:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Filter.php on line 8
[03-Dec-2023 14:09:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Font.php on line 6
[03-Dec-2023 14:09:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Number.php on line 6
[03-Dec-2023 14:09:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ListStyle.php on line 7
[03-Dec-2023 14:09:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Length.php on line 6
[03-Dec-2023 14:09:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Ident.php on line 6
[03-Dec-2023 14:09:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Percentage.php on line 6
[03-Dec-2023 14:09:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/URI.php on line 12
[03-Dec-2023 14:09:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/FontFamily.php on line 6
[03-Dec-2023 14:09:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/TextDecoration.php on line 8
[03-Dec-2023 14:09:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/BackgroundPosition.php on line 44
[03-Dec-2023 14:09:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ImportantDecorator.php on line 6
[03-Dec-2023 14:09:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/DenyElementDecorator.php on line 6
[06-Dec-2023 17:30:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/URI.php on line 12
[01-Jan-2024 20:58:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/DenyElementDecorator.php on line 6
[02-Jan-2024 01:00:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Ident.php on line 6
[04-Jan-2024 02:12:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/BackgroundPosition.php on line 44
[04-Jan-2024 12:04:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_CSS_Number' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/AlphaValue.php on line 3
[06-Jan-2024 01:33:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ImportantDecorator.php on line 6
[06-Jan-2024 23:03:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Filter.php on line 8
[08-Jan-2024 03:50:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ListStyle.php on line 7
[08-Jan-2024 05:51:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Background.php on line 7
[09-Jan-2024 14:26:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Number.php on line 6
[10-Jan-2024 13:07:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Color.php on line 6
[11-Jan-2024 06:45:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Percentage.php on line 6
[14-Jan-2024 00:52:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/TextDecoration.php on line 8
[14-Jan-2024 06:30:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Composite.php on line 12
[15-Jan-2024 05:07:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Font.php on line 6
[21-Jan-2024 01:09:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Border.php on line 6
[22-Jan-2024 12:07:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/URI.php on line 12
[26-Jan-2024 12:12:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Multiple.php on line 14
[27-Jan-2024 03:17:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Length.php on line 6
[27-Jan-2024 11:54:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/FontFamily.php on line 6
[17-Mar-2024 01:54:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Filter.php on line 8
[17-Mar-2024 04:11:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Percentage.php on line 6
[17-Mar-2024 04:46:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Font.php on line 6
[17-Mar-2024 11:27:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/URI.php on line 12
[18-Mar-2024 05:01:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Ident.php on line 6
[18-Mar-2024[26-Mar-2024 02:42:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/DenyElementDecorator.php on line 6
[29-Mar-2024 05:43:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Ident.php on line 6
[01-Apr-2024 07:18:02 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_CSS_Number' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/AlphaValue.php on line 3
[01-Apr-2024 07:20:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/BackgroundPosition.php on line 44
[01-Apr-2024 14:03:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Composite.php on line 12
[02-Apr-2024 16:24:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_CSS_Number' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/AlphaValue.php on line 3
[04-Apr-2024 23:35:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/TextDecoration.php on line 8
[04-Apr-2024 23:54:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ImportantDecorator.php on line 6
[04-Apr-2024 23:54:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ImportantDecorator.php on line 6
[04-Apr-2024 23:59:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Background.php on line 7
[05-Apr-2024 00:00:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ListStyle.php on line 7
[05-Apr-2024 00:04:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Length.php on line 6
[05-Apr-2024 00:13:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Border.php on line 6
[05-Apr-2024 00:50:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Number.php on line 6
[05-Apr-2024 01:00:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Color.php on line 6
[05-Apr-2024 05:33:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ImportantDecorator.php on line 6
[06-Apr-2024 08:24:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ListStyle.php on line 7
[06-Apr-2024 12:26:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Filter.php on line 8
[06-Apr-2024 13:33:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Background.php on line 7
[07-Apr-2024 06:08:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/BackgroundPosition.php on line 44
[07-Apr-2024 18:01:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Number.php on line 6
[08-Apr-2024 11:16:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Color.php on line 6
[09-Apr-2024 11:37:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Percentage.php on line 6
[12-Apr-2024 10:02:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/TextDecoration.php on line 8
[12-Apr-2024 16:04:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Composite.php on line 12
[13-Apr-2024 12:22:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Font.php on line 6
[17-Apr-2024 00:20:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ImportantDecorator.php on line 6
[18-Apr-2024 04:56:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/URI.php on line 12
[20-Apr-2024 09:05:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Border.php on line 6
[20-Apr-2024 14:46:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Multiple.php on line 14
[21-Apr-2024 17:50:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Length.php on line 6
[24-Apr-2024 06:27:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/FontFamily.php on line 6
[05-May-2024 02:43:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/URI.php on line 12
[05-May-2024 02:43:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Percentage.php on line 6
[05-May-2024 02:43:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Number.php on line 6
[05-May-2024 02:44:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Multiple.php on line 14
[05-May-2024 02:44:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ListStyle.php on line 7
[05-May-2024 02:44:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Length.php on line 6
[05-May-2024 02:44:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Ident.php on line 6
[05-May-2024 02:44:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/FontFamily.php on line 6
[05-May-2024 02:44:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Font.php on line 6
[05-May-2024 02:44:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Filter.php on line 8
[05-May-2024 02:44:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Composite.php on line 12
[05-May-2024 02:44:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Color.php on line 6
[05-May-2024 02:44:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Border.php on line 6
[05-May-2024 02:44:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Background.php on line 7
[05-May-2024 02:44:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_CSS_Number' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/AlphaValue.php on line 3
[05-May-2024 02:55:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/TextDecoration.php on line 8
[05-May-2024 02:55:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ImportantDecorator.php on line 6
[05-May-2024 02:55:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/DenyElementDecorator.php on line 6
[05-May-2024 02:55:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/BackgroundPosition.php on line 44
[05-May-2024 12:38:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/URI.php on line 12
[05-May-2024 12:38:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Percentage.php on line 6
[05-May-2024 12:38:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Number.php on line 6
[05-May-2024 12:38:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Multiple.php on line 14
[05-May-2024 12:38:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ListStyle.php on line 7
[05-May-2024 12:39:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Length.php on line 6
[05-May-2024 12:39:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Ident.php on line 6
[05-May-2024 12:39:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/FontFamily.php on line 6
[05-May-2024 12:39:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Font.php on line 6
[05-May-2024 12:39:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Filter.php on line 8
[05-May-2024 12:39:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Composite.php on line 12
[05-May-2024 12:39:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Color.php on line 6
[05-May-2024 12:39:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Border.php on line 6
[05-May-2024 12:39:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Background.php on line 7
[05-May-2024 12:39:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_CSS_Number' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/AlphaValue.php on line 3
[05-May-2024 12:50:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/TextDecoration.php on line 8
[05-May-2024 12:50:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ImportantDecorator.php on line 6
[05-May-2024 12:50:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/DenyElementDecorator.php on line 6
[05-May-2024 12:50:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/BackgroundPosition.php on line 44
[05-May-2024 15:48:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Filter.php on line 8
[05-May-2024 17:39:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/URI.php on line 12
[05-May-2024 18:09:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Composite.php on line 12
[05-May-2024 18:37:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ImportantDecorator.php on line 6
[05-May-2024 20:36:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Font.php on line 6
[05-May-2024 21:00:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Color.php on line 6
[05-May-2024 21:13:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Multiple.php on line 14
[05-May-2024 21:26:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Length.php on line 6
[05-May-2024 21:31:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Number.php on line 6
[05-May-2024 21:49:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/URI.php on line 12
[05-May-2024 21:49:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Percentage.php on line 6
[05-May-2024 21:49:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Number.php on line 6
[05-May-2024 21:49:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Multiple.php on line 14
[05-May-2024 21:49:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ListStyle.php on line 7
[05-May-2024 21:49:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Length.php on line 6
[05-May-2024 21:49:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Ident.php on line 6
[05-May-2024 21:49:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/FontFamily.php on line 6
[05-May-2024 21:49:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Font.php on line 6
[05-May-2024 21:49:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Filter.php on line 8
[05-May-2024 21:49:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Composite.php on line 12
[05-May-2024 21:49:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Color.php on line 6
[05-May-2024 21:49:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Border.php on line 6
[05-May-2024 21:49:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Background.php on line 7
[05-May-2024 21:49:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_CSS_Number' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/AlphaValue.php on line 3
[05-May-2024 22:00:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/TextDecoration.php on line 8
[05-May-2024 22:00:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ImportantDecorator.php on line 6
[05-May-2024 22:00:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/DenyElementDecorator.php on line 6
[05-May-2024 22:00:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/BackgroundPosition.php on line 44
[05-May-2024 23:48:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/TextDecoration.php on line 8
[06-May-2024 00:36:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Background.php on line 7
[06-May-2024 00:58:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Border.php on line 6
[06-May-2024 01:59:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/DenyElementDecorator.php on line 6
[06-May-2024 03:08:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_CSS_Number' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/AlphaValue.php on line 3
[06-May-2024 04:04:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Ident.php on line 6
[06-May-2024 04:18:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ListStyle.php on line 7
[06-May-2024 04:39:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/BackgroundPosition.php on line 44
[06-May-2024 06:19:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Percentage.php on line 6
[06-May-2024 08:12:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/FontFamily.php on line 6
[09-May-2024 11:37:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ImportantDecorator.php on line 6
[12-May-2024 05:10:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/FontFamily.php on line 6
[12-May-2024 06:53:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/DenyElementDecorator.php on line 6
[13-May-2024 12:08:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Multiple.php on line 14
[13-May-2024 12:08:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_CSS_Number' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/AlphaValue.php on line 3
[13-May-2024 12:10:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Filter.php on line 8
[13-May-2024 12:11:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Font.php on line 6
[13-May-2024 12:11:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/BackgroundPosition.php on line 44
[13-May-2024 12:56:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Composite.php on line 12
[13-May-2024 13:04:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Length.php on line 6
[13-May-2024 13:05:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Border.php on line 6
[13-May-2024 13:08:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Ident.php on line 6
[13-May-2024 13:10:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Percentage.php on line 6
[13-May-2024 13:14:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Number.php on line 6
[13-May-2024 13:17:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Background.php on line 7
[13-May-2024 13:18:02 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ListStyle.php on line 7
[13-May-2024 13:18:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Color.php on line 6
[14-May-2024 20:49:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/URI.php on line 12
[14-May-2024 20:49:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Percentage.php on line 6
[14-May-2024 20:49:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Number.php on line 6
[14-May-2024 20:49:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Multiple.php on line 14
[14-May-2024 20:49:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ListStyle.php on line 7
[14-May-2024 20:50:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Length.php on line 6
[14-May-2024 20:50:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Ident.php on line 6
[14-May-2024 20:50:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/FontFamily.php on line 6
[14-May-2024 20:50:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Font.php on line 6
[14-May-2024 20:50:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Filter.php on line 8
[14-May-2024 20:50:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Composite.php on line 12
[14-May-2024 20:50:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Color.php on line 6
[14-May-2024 20:50:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Border.php on line 6
[14-May-2024 20:50:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Background.php on line 7
[14-May-2024 20:50:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_CSS_Number' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/AlphaValue.php on line 3
[14-May-2024 20:58:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/TextDecoration.php on line 8
[14-May-2024 20:58:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ImportantDecorator.php on line 6
[14-May-2024 20:58:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/DenyElementDecorator.php on line 6
[14-May-2024 20:58:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/BackgroundPosition.php on line 44
[15-May-2024 04:56:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ImportantDecorator.php on line 6
[19-May-2024 10:22:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Font.php on line 6
[19-May-2024 11:43:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Multiple.php on line 14
[19-May-2024 11:44:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Composite.php on line 12
[19-May-2024 11:47:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/DenyElementDecorator.php on line 6
[19-May-2024 12:25:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Filter.php on line 8
[19-May-2024 13:11:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_CSS_Number' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/AlphaValue.php on line 3
[25-May-2024 19:51:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/URI.php on line 12
[26-May-2024 07:39:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Ident.php on line 6
[30-May-2024 09:10:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_CSS_Number' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/AlphaValue.php on line 3
[30-May-2024 17:53:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Font.php on line 6
[31-May-2024 05:15:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ImportantDecorator.php on line 6
[31-May-2024 11:56:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Filter.php on line 8
[31-May-2024 15:27:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Color.php on line 6
[31-May-2024 21:17:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ListStyle.php on line 7
[31-May-2024 23:40:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/BackgroundPosition.php on line 44
[01-Jun-2024 00:10:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Number.php on line 6
[01-Jun-2024 03:17:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/TextDecoration.php on line 8
[01-Jun-2024 11:14:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/FontFamily.php on line 6
[01-Jun-2024 12:18:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Background.php on line 7
[01-Jun-2024 16:59:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Percentage.php on line 6
[01-Jun-2024 18:01:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Composite.php on line 12
[01-Jun-2024 20:30:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Border.php on line 6
[01-Jun-2024 21:28:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Multiple.php on line 14
[05-Jun-2024 15:26:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Length.php on line 6
[14-Jun-2024 14:33:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Composite.php on line 12
[14-Jun-2024 14:58:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/TextDecoration.php on line 8
[14-Jun-2024 14:58:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Border.php on line 6
[14-Jun-2024 14:59:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Multiple.php on line 14
[14-Jun-2024 15:02:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_CSS_Number' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/AlphaValue.php on line 3
[14-Jun-2024 15:04:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Ident.php on line 6
[14-Jun-2024 15:08:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Font.php on line 6
[14-Jun-2024 15:10:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Percentage.php on line 6
[14-Jun-2024 15:16:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Number.php on line 6
[14-Jun-2024 15:42:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Background.php on line 7
[14-Jun-2024 15:43:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ListStyle.php on line 7
[14-Jun-2024 15:49:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Color.php on line 6
[14-Jun-2024 17:06:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ImportantDecorator.php on line 6
[14-Jun-2024 17:07:51 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/BackgroundPosition.php on line 44
[17-Jun-2024 20:18:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Length.php on line 6
[18-Jun-2024 23:03:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/URI.php on line 12
[18-Jun-2024 23:04:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Percentage.php on line 6
[18-Jun-2024 23:04:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Number.php on line 6
[18-Jun-2024 23:04:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Multiple.php on line 14
[18-Jun-2024 23:04:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ListStyle.php on line 7
[18-Jun-2024 23:04:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Length.php on line 6
[18-Jun-2024 23:04:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Ident.php on line 6
[18-Jun-2024 23:04:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/FontFamily.php on line 6
[18-Jun-2024 23:04:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Font.php on line 6
[18-Jun-2024 23:04:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Filter.php on line 8
[18-Jun-2024 23:04:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Composite.php on line 12
[18-Jun-2024 23:04:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Color.php on line 6
[18-Jun-2024 23:04:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Border.php on line 6
[18-Jun-2024 23:04:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Background.php on line 7
[18-Jun-2024 23:04:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_CSS_Number' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/AlphaValue.php on line 3
[18-Jun-2024 23:09:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/TextDecoration.php on line 8
[18-Jun-2024 23:09:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ImportantDecorator.php on line 6
[18-Jun-2024 23:09:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/DenyElementDecorator.php on line 6
[18-Jun-2024 23:09:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/BackgroundPosition.php on line 44
[19-Jun-2024 08:01:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/URI.php on line 12
[19-Jun-2024 08:01:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Percentage.php on line 6
[19-Jun-2024 08:01:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Number.php on line 6
[19-Jun-2024 08:02:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Multiple.php on line 14
[19-Jun-2024 08:02:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ListStyle.php on line 7
[19-Jun-2024 08:02:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Length.php on line 6
[19-Jun-2024 08:02:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Ident.php on line 6
[19-Jun-2024 08:02:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/FontFamily.php on line 6
[19-Jun-2024 08:02:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Font.php on line 6
[19-Jun-2024 08:02:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Filter.php on line 8
[19-Jun-2024 08:02:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Composite.php on line 12
[19-Jun-2024 08:02:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Color.php on line 6
[19-Jun-2024 08:02:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Border.php on line 6
[19-Jun-2024 08:02:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Background.php on line 7
[19-Jun-2024 08:02:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_CSS_Number' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/AlphaValue.php on line 3
[19-Jun-2024 08:07:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/TextDecoration.php on line 8
[19-Jun-2024 08:07:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ImportantDecorator.php on line 6
[19-Jun-2024 08:07:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/DenyElementDecorator.php on line 6
[19-Jun-2024 08:07:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/BackgroundPosition.php on line 44
[19-Jun-2024 20:51:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/URI.php on line 12
[19-Jun-2024 20:51:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Percentage.php on line 6
[19-Jun-2024 20:51:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Number.php on line 6
[19-Jun-2024 20:51:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Multiple.php on line 14
[19-Jun-2024 20:51:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ListStyle.php on line 7
[19-Jun-2024 20:51:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Length.php on line 6
[19-Jun-2024 20:51:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Ident.php on line 6
[19-Jun-2024 20:51:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/FontFamily.php on line 6
[19-Jun-2024 20:51:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Font.php on line 6
[19-Jun-2024 20:51:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Filter.php on line 8
[19-Jun-2024 20:51:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Composite.php on line 12
[19-Jun-2024 20:51:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Color.php on line 6
[19-Jun-2024 20:51:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Border.php on line 6
[19-Jun-2024 20:52:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Background.php on line 7
[19-Jun-2024 20:52:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_CSS_Number' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/AlphaValue.php on line 3
[19-Jun-2024 20:56:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/TextDecoration.php on line 8
[19-Jun-2024 20:56:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ImportantDecorator.php on line 6
[19-Jun-2024 20:56:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/DenyElementDecorator.php on line 6
[19-Jun-2024 20:57:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/BackgroundPosition.php on line 44
[27-Jun-2024 03:38:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Ident.php on line 6
[27-Jun-2024 05:14:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Background.php on line 7
[27-Jun-2024 05:31:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/URI.php on line 12
[27-Jun-2024 05:34:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Border.php on line 6
[27-Jun-2024 11:11:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Font.php on line 6
[27-Jun-2024 11:58:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Composite.php on line 12
[27-Jun-2024 12:11:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_CSS_Number' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/AlphaValue.php on line 3
[27-Jun-2024 13:48:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Number.php on line 6
[27-Jun-2024 15:10:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Percentage.php on line 6
[27-Jun-2024 16:33:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/TextDecoration.php on line 8
[27-Jun-2024 16:58:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/BackgroundPosition.php on line 44
[27-Jun-2024 17:03:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Length.php on line 6
[27-Jun-2024 17:41:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/FontFamily.php on line 6
[27-Jun-2024 18:28:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/DenyElementDecorator.php on line 6
[27-Jun-2024 20:43:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ListStyle.php on line 7
[27-Jun-2024 20:56:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Filter.php on line 8
[27-Jun-2024 21:50:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Multiple.php on line 14
[28-Jun-2024 02:31:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ImportantDecorator.php on line 6
[28-Jun-2024 05:02:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Multiple.php on line 14
[28-Jun-2024 05:09:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Ident.php on line 6
[28-Jun-2024 05:21:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/BackgroundPosition.php on line 44
[28-Jun-2024 05:35:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Number.php on line 6
[28-Jun-2024 06:07:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Color.php on line 6
[29-Jun-2024 03:20:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/DenyElementDecorator.php on line 6
[29-Jun-2024 22:30:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Background.php on line 7
[30-Jun-2024 03:48:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/URI.php on line 12
[30-Jun-2024 04:42:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ImportantDecorator.php on line 6
[02-Jul-2024 09:42:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ListStyle.php on line 7
[02-Jul-2024 09:58:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/FontFamily.php on line 6
[05-Jul-2024 04:14:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Ident.php on line 6
[05-Jul-2024 04:21:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Multiple.php on line 14
[05-Jul-2024 04:30:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/BackgroundPosition.php on line 44
[05-Jul-2024 04:38:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Number.php on line 6
[06-Jul-2024 10:09:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/URI.php on line 12
[06-Jul-2024 12:16:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ImportantDecorator.php on line 6
[06-Jul-2024 12:31:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Background.php on line 7
[08-Jul-2024 11:52:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Font.php on line 6
[08-Jul-2024 13:45:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/URI.php on line 12
[09-Jul-2024 11:43:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Background.php on line 7
[09-Jul-2024 12:39:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Color.php on line 6
[09-Jul-2024 13:13:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Filter.php on line 8
[09-Jul-2024 16:38:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/FontFamily.php on line 6
[09-Jul-2024 19:30:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Number.php on line 6
[09-Jul-2024 21:34:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ImportantDecorator.php on line 6
[10-Jul-2024 05:08:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_CSS_Number' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/AlphaValue.php on line 3
[10-Jul-2024 07:07:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Multiple.php on line 14
[10-Jul-2024 09:21:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Length.php on line 6
[10-Jul-2024 11:36:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/TextDecoration.php on line 8
[10-Jul-2024 11:38:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Percentage.php on line 6
[10-Jul-2024 14:09:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ListStyle.php on line 7
[10-Jul-2024 14:23:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Ident.php on line 6
[10-Jul-2024 15:30:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Composite.php on line 12
[10-Jul-2024 16:20:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/BackgroundPosition.php on line 44
[10-Jul-2024 17:00:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Border.php on line 6
[11-Jul-2024 04:32:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Ident.php on line 6
[11-Jul-2024 04:36:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Multiple.php on line 14
[11-Jul-2024 04:49:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/BackgroundPosition.php on line 44
[11-Jul-2024 05:00:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Number.php on line 6
[12-Jul-2024 05:08:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/URI.php on line 12
[12-Jul-2024 06:03:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ImportantDecorator.php on line 6
[12-Jul-2024 06:10:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Background.php on line 7
[22-Jul-2024 20:54:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/URI.php on line 12
[22-Jul-2024 20:54:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Percentage.php on line 6
[22-Jul-2024 20:54:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Number.php on line 6
[22-Jul-2024 20:54:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Multiple.php on line 14
[22-Jul-2024 20:54:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ListStyle.php on line 7
[22-Jul-2024 20:54:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Length.php on line 6
[22-Jul-2024 20:54:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Ident.php on line 6
[22-Jul-2024 20:54:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/FontFamily.php on line 6
[22-Jul-2024 20:54:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Font.php on line 6
[22-Jul-2024 20:55:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Filter.php on line 8
[22-Jul-2024 20:55:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Composite.php on line 12
[22-Jul-2024 20:55:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Color.php on line 6
[22-Jul-2024 20:55:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Border.php on line 6
[22-Jul-2024 20:55:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Background.php on line 7
[22-Jul-2024 20:55:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_CSS_Number' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/AlphaValue.php on line 3
[22-Jul-2024 21:06:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/TextDecoration.php on line 8
[22-Jul-2024 21:06:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ImportantDecorator.php on line 6
[22-Jul-2024 21:06:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/DenyElementDecorator.php on line 6
[22-Jul-2024 21:06:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/BackgroundPosition.php on line 44
[23-Jul-2024 05:25:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ListStyle.php on line 7
[23-Jul-2024 05:33:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/FontFamily.php on line 6
[24-Jul-2024 04:46:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Font.php on line 6
[24-Jul-2024 05:40:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Border.php on line 6
[24-Jul-2024 08:08:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Percentage.php on line 6
[24-Jul-2024 08:49:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Composite.php on line 12
[25-Jul-2024 01:29:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/BackgroundPosition.php on line 44
[26-Jul-2024 01:13:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_CSS_Number' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/AlphaValue.php on line 3
[26-Jul-2024 02:21:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/TextDecoration.php on line 8
[29-Jul-2024 02:46:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ListStyle.php on line 7
[29-Jul-2024 02:55:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/FontFamily.php on line 6
[29-Jul-2024 21:41:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Font.php on line 6
[29-Jul-2024 22:04:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Border.php on line 6
[29-Jul-2024 22:42:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Composite.php on line 12
[29-Jul-2024 22:52:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Percentage.php on line 6
[31-Jul-2024 21:41:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_CSS_Number' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/AlphaValue.php on line 3
[31-Jul-2024 22:38:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/TextDecoration.php on line 8
[02-Aug-2024 17:49:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Font.php on line 6
[03-Aug-2024 11:32:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/FontFamily.php on line 6
[03-Aug-2024 14:24:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/TextDecoration.php on line 8
[03-Aug-2024 15:20:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/DenyElementDecorator.php on line 6
[03-Aug-2024 17:19:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Border.php on line 6
[03-Aug-2024 22:44:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_CSS_Number' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/AlphaValue.php on line 3
[04-Aug-2024 01:16:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Color.php on line 6
[04-Aug-2024 01:49:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/BackgroundPosition.php on line 44
[04-Aug-2024 02:27:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Percentage.php on line 6
[04-Aug-2024 05:09:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Number.php on line 6
[04-Aug-2024 06:34:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Filter.php on line 8
[04-Aug-2024 06:47:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Composite.php on line 12
[04-Aug-2024 12:57:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Length.php on line 6
[04-Aug-2024 13:02:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ListStyle.php on line 7
[04-Aug-2024 15:23:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Multiple.php on line 14
[04-Aug-2024 16:09:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/URI.php on line 12
[04-Aug-2024 17:36:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/DenyElementDecorator.php on line 6
[04-Aug-2024 20:38:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Font.php on line 6
[04-Aug-2024 21:05:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Border.php on line 6
[04-Aug-2024 21:18:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Composite.php on line 12
[04-Aug-2024 22:10:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Percentage.php on line 6
[05-Aug-2024 08:14:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ImportantDecorator.php on line 6
[07-Aug-2024 07:54:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_CSS_Number' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/AlphaValue.php on line 3
[07-Aug-2024 08:22:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/TextDecoration.php on line 8
[10-Aug-2024 09:14:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Background.php on line 7
[10-Aug-2024 10:33:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Ident.php on line 6
[10-Aug-2024 16:13:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Percentage.php on line 6
[10-Aug-2024 16:27:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Border.php on line 6
[10-Aug-2024 23:46:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Composite.php on line 12
[12-Aug-2024 18:24:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_CSS_Number' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/AlphaValue.php on line 3
[13-Aug-2024 10:35:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/TextDecoration.php on line 8
[15-Aug-2024 04:36:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/URI.php on line 12
[15-Aug-2024 18:17:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Background.php on line 7
[16-Aug-2024 01:13:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Number.php on line 6
[16-Aug-2024 02:49:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Filter.php on line 8
[16-Aug-2024 07:07:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Percentage.php on line 6
[16-Aug-2024 08:00:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Color.php on line 6
[16-Aug-2024 10:19:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Border.php on line 6
[16-Aug-2024 12:58:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_CSS_Number' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/AlphaValue.php on line 3
[16-Aug-2024 14:47:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/BackgroundPosition.php on line 44
[16-Aug-2024 15:43:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ListStyle.php on line 7
[16-Aug-2024 16:01:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Multiple.php on line 14
[16-Aug-2024 16:12:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ImportantDecorator.php on line 6
[16-Aug-2024 17:44:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Composite.php on line 12
[16-Aug-2024 18:26:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/TextDecoration.php on line 8
[16-Aug-2024 21:41:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Length.php on line 6
[18-Aug-2024 17:45:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Border.php on line 6
[19-Aug-2024 13:46:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Color.php on line 6
[20-Aug-2024 22:31:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/FontFamily.php on line 6
[21-Aug-2024 05:05:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Font.php on line 6
[21-Aug-2024 11:30:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ListStyle.php on line 7
[21-Aug-2024 20:32:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Ident.php on line 6
[22-Aug-2024 00:23:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ListStyle.php on line 7
[23-Aug-2024 01:20:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/BackgroundPosition.php on line 44
[23-Aug-2024 06:13:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/TextDecoration.php on line 8
[23-Aug-2024 15:08:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Background.php on line 7
[24-Aug-2024 15:50:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Filter.php on line 8
[25-Aug-2024 08:32:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ImportantDecorator.php on line 6
[25-Aug-2024 19:44:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Percentage.php on line 6
[25-Aug-2024 20:00:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Border.php on line 6
[25-Aug-2024 22:48:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Composite.php on line 12
[25-Aug-2024 23:21:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/URI.php on line 12
[26-Aug-2024 10:51:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Border.php on line 6
[26-Aug-2024 20:42:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Number.php on line 6
[27-Aug-2024 21:54:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_CSS_Number' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/AlphaValue.php on line 3
[28-Aug-2024 04:38:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/TextDecoration.php on line 8
[28-Aug-2024 09:58:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ImportantDecorator.php on line 6
[29-Aug-2024 04:20:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Percentage.php on line 6
[29-Aug-2024 10:23:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Composite.php on line 12
[29-Aug-2024 22:37:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Filter.php on line 8
[30-Aug-2024 05:53:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Font.php on line 6
[30-Aug-2024 14:21:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Ident.php on line 6
[30-Aug-2024 16:21:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/URI.php on line 12
[30-Aug-2024 20:01:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Multiple.php on line 14
[31-Aug-2024 17:28:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Percentage.php on line 6
[31-Aug-2024 17:41:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Border.php on line 6
[31-Aug-2024 22:16:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Composite.php on line 12
[01-Sep-2024 06:09:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Color.php on line 6
[02-Sep-2024 00:54:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/URI.php on line 12
[02-Sep-2024 00:54:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Percentage.php on line 6
[02-Sep-2024 00:54:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Number.php on line 6
[02-Sep-2024 00:54:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Multiple.php on line 14
[02-Sep-2024 00:54:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ListStyle.php on line 7
[02-Sep-2024 00:54:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Length.php on line 6
[02-Sep-2024 00:54:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Ident.php on line 6
[02-Sep-2024 00:55:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/FontFamily.php on line 6
[02-Sep-2024 00:55:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Font.php on line 6
[02-Sep-2024 00:55:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Filter.php on line 8
[02-Sep-2024 00:55:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Composite.php on line 12
[02-Sep-2024 00:55:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Color.php on line 6
[02-Sep-2024 00:55:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Border.php on line 6
[02-Sep-2024 00:55:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Background.php on line 7
[02-Sep-2024 00:55:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_CSS_Number' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/AlphaValue.php on line 3
[02-Sep-2024 01:06:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/TextDecoration.php on line 8
[02-Sep-2024 01:06:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ImportantDecorator.php on line 6
[02-Sep-2024 01:06:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/DenyElementDecorator.php on line 6
[02-Sep-2024 01:06:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/BackgroundPosition.php on line 44
[02-Sep-2024 03:50:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Background.php on line 7
[05-Sep-2024 18:56:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Font.php on line 6
[07-Sep-2024 06:40:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ListStyle.php on line 7
[09-Sep-2024 11:16:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Number.php on line 6
[09-Sep-2024 12:07:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/TextDecoration.php on line 8
[09-Sep-2024 12:53:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Filter.php on line 8
[09-Sep-2024 13:26:51 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/FontFamily.php on line 6
[09-Sep-2024 13:46:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/DenyElementDecorator.php on line 6
[09-Sep-2024 15:21:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Border.php on line 6
[09-Sep-2024 16:05:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ListStyle.php on line 7
[09-Sep-2024 16:08:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Composite.php on line 12
[09-Sep-2024 22:00:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Length.php on line 6
[09-Sep-2024 22:24:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_CSS_Number' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/AlphaValue.php on line 3
[09-Sep-2024 22:30:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Multiple.php on line 14
[10-Sep-2024 02:30:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Multiple.php on line 14
[10-Sep-2024 10:01:51 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ImportantDecorator.php on line 6
[10-Sep-2024 12:24:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/URI.php on line 12
[10-Sep-2024 13:38:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ListStyle.php on line 7
[10-Sep-2024 14:21:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/DenyElementDecorator.php on line 6
[10-Sep-2024 16:03:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Color.php on line 6
[10-Sep-2024 16:43:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/BackgroundPosition.php on line 44
[10-Sep-2024 17:28:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Percentage.php on line 6
[11-Sep-2024 01:59:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Number.php on line 6
[11-Sep-2024 10:14:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Number.php on line 6
[11-Sep-2024 22:27:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Number.php on line 6
[12-Sep-2024 00:25:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/URI.php on line 12
[12-Sep-2024 00:25:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Percentage.php on line 6
[12-Sep-2024 00:25:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Number.php on line 6
[12-Sep-2024 00:25:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Multiple.php on line 14
[12-Sep-2024 00:25:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ListStyle.php on line 7
[12-Sep-2024 00:25:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Length.php on line 6
[12-Sep-2024 00:25:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Ident.php on line 6
[12-Sep-2024 00:25:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/FontFamily.php on line 6
[12-Sep-2024 00:25:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Font.php on line 6
[12-Sep-2024 00:25:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Filter.php on line 8
[12-Sep-2024 00:25:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Composite.php on line 12
[12-Sep-2024 00:26:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Color.php on line 6
[12-Sep-2024 00:26:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Border.php on line 6
[12-Sep-2024 00:26:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Background.php on line 7
[12-Sep-2024 00:26:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_CSS_Number' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/AlphaValue.php on line 3
[12-Sep-2024 00:37:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/TextDecoration.php on line 8
[12-Sep-2024 00:37:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ImportantDecorator.php on line 6
[12-Sep-2024 00:37:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/DenyElementDecorator.php on line 6
[12-Sep-2024 00:37:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/BackgroundPosition.php on line 44
[13-Sep-2024 07:31:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/URI.php on line 12
[13-Sep-2024 07:31:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Percentage.php on line 6
[13-Sep-2024 07:31:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Number.php on line 6
[13-Sep-2024 07:31:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Multiple.php on line 14
[13-Sep-2024 07:31:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ListStyle.php on line 7
[13-Sep-2024 07:31:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Length.php on line 6
[13-Sep-2024 07:31:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Ident.php on line 6
[13-Sep-2024 07:31:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/FontFamily.php on line 6
[13-Sep-2024 07:31:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Font.php on line 6
[13-Sep-2024 07:32:02 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Filter.php on line 8
[13-Sep-2024 07:32:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Composite.php on line 12
[13-Sep-2024 07:32:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Color.php on line 6
[13-Sep-2024 07:32:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Border.php on line 6
[13-Sep-2024 07:32:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Background.php on line 7
[13-Sep-2024 07:32:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_CSS_Number' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/AlphaValue.php on line 3
[13-Sep-2024 07:32:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/URI.php on line 12
[13-Sep-2024 07:32:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Percentage.php on line 6
[13-Sep-2024 07:32:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Number.php on line 6
[13-Sep-2024 07:33:02 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Multiple.php on line 14
[13-Sep-2024 07:33:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ListStyle.php on line 7
[13-Sep-2024 07:33:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Length.php on line 6
[13-Sep-2024 07:33:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Ident.php on line 6
[13-Sep-2024 07:33:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/FontFamily.php on line 6
[13-Sep-2024 07:33:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Font.php on line 6
[13-Sep-2024 07:33:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Filter.php on line 8
[13-Sep-2024 07:33:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Composite.php on line 12
[13-Sep-2024 07:33:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Color.php on line 6
[13-Sep-2024 07:33:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Border.php on line 6
[13-Sep-2024 07:33:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Background.php on line 7
[13-Sep-2024 07:33:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_CSS_Number' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/AlphaValue.php on line 3
[13-Sep-2024 07:36:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Multiple.php on line 14
[13-Sep-2024 07:36:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Multiple.php on line 14
[13-Sep-2024 07:52:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/TextDecoration.php on line 8
[13-Sep-2024 07:52:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ImportantDecorator.php on line 6
[13-Sep-2024 07:52:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/DenyElementDecorator.php on line 6
[13-Sep-2024 07:52:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/BackgroundPosition.php on line 44
[13-Sep-2024 07:52:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/TextDecoration.php on line 8
[13-Sep-2024 07:52:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ImportantDecorator.php on line 6
[13-Sep-2024 07:52:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/DenyElementDecorator.php on line 6
[13-Sep-2024 07:52:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/BackgroundPosition.php on line 44
[13-Sep-2024 15:34:51 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Percentage.php on line 6
[16-Sep-2024 15:33:51 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Background.php on line 7
[17-Sep-2024 11:29:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Ident.php on line 6
[17-Sep-2024 23:07:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Percentage.php on line 6
[18-Sep-2024 08:19:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Background.php on line 7
[18-Sep-2024 21:43:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Color.php on line 6
[19-Sep-2024 12:42:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Border.php on line 6
[20-Sep-2024 12:45:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Ident.php on line 6
[20-Sep-2024 22:42:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Ident.php on line 6
[21-Sep-2024 09:10:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_CSS_Number' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/AlphaValue.php on line 3
[21-Sep-2024 15:07:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/URI.php on line 12
[21-Sep-2024 15:40:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Background.php on line 7
[22-Sep-2024 01:55:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Border.php on line 6
[22-Sep-2024 02:50:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Color.php on line 6
[22-Sep-2024 10:01:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Multiple.php on line 14
[22-Sep-2024 13:56:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Number.php on line 6
[22-Sep-2024 19:24:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Percentage.php on line 6
[22-Sep-2024 20:22:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Length.php on line 6
[22-Sep-2024 21:21:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/BackgroundPosition.php on line 44
[22-Sep-2024 21:52:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_CSS_Number' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/AlphaValue.php on line 3
[23-Sep-2024 06:20:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/TextDecoration.php on line 8
[23-Sep-2024 07:27:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Composite.php on line 12
[24-Sep-2024 04:09:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/FontFamily.php on line 6
[24-Sep-2024 04:30:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Composite.php on line 12
[24-Sep-2024 05:13:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/DenyElementDecorator.php on line 6
[24-Sep-2024 21:20:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Composite.php on line 12
[25-Sep-2024 08:10:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Percentage.php on line 6
[25-Sep-2024 10:01:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Border.php on line 6
[26-Sep-2024 18:34:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Composite.php on line 12
[27-Sep-2024 00:35:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_CSS_Number' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/AlphaValue.php on line 3
[27-Sep-2024 13:43:02 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/FontFamily.php on line 6
[28-Sep-2024 18:43:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Font.php on line 6
[28-Sep-2024 19:19:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ListStyle.php on line 7
[29-Sep-2024 06:13:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Filter.php on line 8
[29-Sep-2024 08:51:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Ident.php on line 6
[30-Sep-2024 14:59:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/URI.php on line 12
[01-Oct-2024 07:58:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/TextDecoration.php on line 8
[01-Oct-2024 13:09:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_CSS_Number' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/AlphaValue.php on line 3
[01-Oct-2024 14:25:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Percentage.php on line 6
[01-Oct-2024 14:36:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Composite.php on line 12
[01-Oct-2024 17:32:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Border.php on line 6
[04-Oct-2024 17:58:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ImportantDecorator.php on line 6
[09-Oct-2024 05:39:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Border.php on line 6
[11-Oct-2024 19:38:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Length.php on line 6
[11-Oct-2024 22:03:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/DenyElementDecorator.php on line 6
[12-Oct-2024 05:45:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/BackgroundPosition.php on line 44
[12-Oct-2024 12:49:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Multiple.php on line 14
[12-Oct-2024 19:23:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Font.php on line 6
[13-Oct-2024 06:09:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Length.php on line 6
[13-Oct-2024 11:07:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Color.php on line 6
[13-Oct-2024 15:12:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_CSS_Number' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/AlphaValue.php on line 3
[13-Oct-2024 15:15:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Number.php on line 6
[13-Oct-2024 18:52:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/URI.php on line 12
[13-Oct-2024 21:49:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_CSS_Number' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/AlphaValue.php on line 3
[13-Oct-2024 21:59:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/DenyElementDecorator.php on line 6
[13-Oct-2024 22:42:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ListStyle.php on line 7
[13-Oct-2024 23:02:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Percentage.php on line 6
[13-Oct-2024 23:50:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Multiple.php on line 14
[14-Oct-2024 01:55:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/BackgroundPosition.php on line 44
[14-Oct-2024 02:04:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Filter.php on line 8
[14-Oct-2024 04:16:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/FontFamily.php on line 6
[14-Oct-2024 10:03:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ImportantDecorator.php on line 6
[14-Oct-2024 10:05:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Composite.php on line 12
[14-Oct-2024 10:19:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/TextDecoration.php on line 8
[14-Oct-2024 14:03:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/DenyElementDecorator.php on line 6
[14-Oct-2024 15:27:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Border.php on line 6
[17-Oct-2024 23:45:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/BackgroundPosition.php on line 44
[18-Oct-2024 18:19:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/TextDecoration.php on line 8
[18-Oct-2024 18:21:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Border.php on line 6
[18-Oct-2024 18:21:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Ident.php on line 6
[18-Oct-2024 18:22:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Length.php on line 6
[18-Oct-2024 18:22:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Multiple.php on line 14
[18-Oct-2024 18:23:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_CSS_Number' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/AlphaValue.php on line 3
[18-Oct-2024 18:23:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/BackgroundPosition.php on line 44
[18-Oct-2024 18:25:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Composite.php on line 12
[18-Oct-2024 18:26:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/FontFamily.php on line 6
[18-Oct-2024 18:27:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Background.php on line 7
[18-Oct-2024 18:28:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ListStyle.php on line 7
[18-Oct-2024 18:30:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/URI.php on line 12
[18-Oct-2024 18:30:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Number.php on line 6
[18-Oct-2024 18:31:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Font.php on line 6
[18-Oct-2024 18:31:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/DenyElementDecorator.php on line 6
[25-Oct-2024 05:30:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Background.php on line 7
[25-Oct-2024 11:27:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Ident.php on line 6
[26-Oct-2024 17:45:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_CSS_Number' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/AlphaValue.php on line 3
[28-Oct-2024 02:55:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Composite.php on line 12
[29-Oct-2024 08:03:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/URI.php on line 12
[29-Oct-2024 16:26:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Percentage.php on line 6
[29-Oct-2024 20:59:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/FontFamily.php on line 6
[29-Oct-2024 22:58:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Background.php on line 7
[30-Oct-2024 07:48:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Number.php on line 6
[30-Oct-2024 09:22:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/BackgroundPosition.php on line 44
[30-Oct-2024 09:46:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_CSS_Number' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/AlphaValue.php on line 3
[30-Oct-2024 11:36:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Length.php on line 6
[30-Oct-2024 11:44:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Percentage.php on line 6
[30-Oct-2024 15:53:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Multiple.php on line 14
[30-Oct-2024 20:56:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Color.php on line 6
[30-Oct-2024 23:31:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Border.php on line 6
[31-Oct-2024 03:45:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/TextDecoration.php on line 8
[31-Oct-2024 15:15:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/URI.php on line 12
[31-Oct-2024 15:15:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Percentage.php on line 6
[31-Oct-2024 15:15:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Number.php on line 6
[31-Oct-2024 15:15:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Multiple.php on line 14
[31-Oct-2024 15:15:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ListStyle.php on line 7
[31-Oct-2024 15:15:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Length.php on line 6
[31-Oct-2024 15:15:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Ident.php on line 6
[31-Oct-2024 15:16:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/FontFamily.php on line 6
[31-Oct-2024 15:16:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Font.php on line 6
[31-Oct-2024 15:16:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Filter.php on line 8
[31-Oct-2024 15:16:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Composite.php on line 12
[31-Oct-2024 15:16:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Color.php on line 6
[31-Oct-2024 15:16:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Border.php on line 6
[31-Oct-2024 15:16:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Background.php on line 7
[31-Oct-2024 15:16:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_CSS_Number' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/AlphaValue.php on line 3
[31-Oct-2024 15:40:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/TextDecoration.php on line 8
[31-Oct-2024 15:40:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ImportantDecorator.php on line 6
[31-Oct-2024 15:40:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/DenyElementDecorator.php on line 6
[31-Oct-2024 15:40:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/BackgroundPosition.php on line 44
[31-Oct-2024 20:03:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Composite.php on line 12
[01-Nov-2024 20:12:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ListStyle.php on line 7
[01-Nov-2024 22:45:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/DenyElementDecorator.php on line 6
[03-Nov-2024 09:16:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Ident.php on line 6
[03-Nov-2024 20:39:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Filter.php on line 8
[06-Nov-2024 11:51:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/FontFamily.php on line 6
[06-Nov-2024 23:06:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Font.php on line 6
[07-Nov-2024 09:57:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ListStyle.php on line 7
[07-Nov-2024 12:02:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Filter.php on line 8
[09-Nov-2024 11:50:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Filter.php on line 8
[10-Nov-2024 12:50:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/URI.php on line 12
[10-Nov-2024 12:52:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Percentage.php on line 6
[10-Nov-2024 12:52:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Number.php on line 6
[10-Nov-2024 12:52:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Multiple.php on line 14
[10-Nov-2024 12:52:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ListStyle.php on line 7
[10-Nov-2024 12:52:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Length.php on line 6
[10-Nov-2024 12:52:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Ident.php on line 6
[10-Nov-2024 12:52:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/FontFamily.php on line 6
[10-Nov-2024 12:52:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Font.php on line 6
[10-Nov-2024 12:52:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Filter.php on line 8
[10-Nov-2024 12:52:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Composite.php on line 12
[10-Nov-2024 12:52:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Color.php on line 6
[10-Nov-2024 12:52:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Border.php on line 6
[10-Nov-2024 12:52:51 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Background.php on line 7
[10-Nov-2024 12:52:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_CSS_Number' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/AlphaValue.php on line 3
[10-Nov-2024 12:53:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/TextDecoration.php on line 8
[10-Nov-2024 12:53:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ImportantDecorator.php on line 6
[10-Nov-2024 12:53:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/DenyElementDecorator.php on line 6
[10-Nov-2024 12:53:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/BackgroundPosition.php on line 44
[11-Nov-2024 07:00:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Font.php on line 6
htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Length.php 0000644 00000003551 14716425661 0017127 0 ustar 00 min = $min !== null ? HTMLPurifier_Length::make($min) : null;
$this->max = $max !== null ? HTMLPurifier_Length::make($max) : null;
}
/**
* @param string $string
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return bool|string
*/
public function validate($string, $config, $context)
{
$string = $this->parseCDATA($string);
// Optimizations
if ($string === '') {
return false;
}
if ($string === '0') {
return '0';
}
if (strlen($string) === 1) {
return false;
}
$length = HTMLPurifier_Length::make($string);
if (!$length->isValid()) {
return false;
}
if ($this->min) {
$c = $length->compareTo($this->min);
if ($c === false) {
return false;
}
if ($c < 0) {
return false;
}
}
if ($this->max) {
$c = $length->compareTo($this->max);
if ($c === false) {
return false;
}
if ($c > 0) {
return false;
}
}
return $length->toString();
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/AttrDef/CSS/ListStyle.php 0000644 00000005537 14716425661 0017650 0 ustar 00 getCSSDefinition();
$this->info['list-style-type'] = $def->info['list-style-type'];
$this->info['list-style-position'] = $def->info['list-style-position'];
$this->info['list-style-image'] = $def->info['list-style-image'];
}
/**
* @param string $string
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return bool|string
*/
public function validate($string, $config, $context)
{
// regular pre-processing
$string = $this->parseCDATA($string);
if ($string === '') {
return false;
}
// assumes URI doesn't have spaces in it
$bits = explode(' ', strtolower($string)); // bits to process
$caught = array();
$caught['type'] = false;
$caught['position'] = false;
$caught['image'] = false;
$i = 0; // number of catches
$none = false;
foreach ($bits as $bit) {
if ($i >= 3) {
return;
} // optimization bit
if ($bit === '') {
continue;
}
foreach ($caught as $key => $status) {
if ($status !== false) {
continue;
}
$r = $this->info['list-style-' . $key]->validate($bit, $config, $context);
if ($r === false) {
continue;
}
if ($r === 'none') {
if ($none) {
continue;
} else {
$none = true;
}
if ($key == 'image') {
continue;
}
}
$caught[$key] = $r;
$i++;
break;
}
}
if (!$i) {
return false;
}
$ret = array();
// construct type
if ($caught['type']) {
$ret[] = $caught['type'];
}
// construct image
if ($caught['image']) {
$ret[] = $caught['image'];
}
// construct position
if ($caught['position']) {
$ret[] = $caught['position'];
}
if (empty($ret)) {
return false;
}
return implode(' ', $ret);
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/AttrDef/CSS/DenyElementDecorator.php 0000644 00000002063 14716425661 0021757 0 ustar 00 def = $def;
$this->element = $element;
}
/**
* Checks if CurrentToken is set and equal to $this->element
* @param string $string
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return bool|string
*/
public function validate($string, $config, $context)
{
$token = $context->get('CurrentToken', true);
if ($token && $token->name == $this->element) {
return false;
}
return $this->def->validate($string, $config, $context);
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Color.php 0000644 00000011110 14716425662 0016753 0 ustar 00 alpha = new HTMLPurifier_AttrDef_CSS_AlphaValue();
}
/**
* @param string $color
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return bool|string
*/
public function validate($color, $config, $context)
{
static $colors = null;
if ($colors === null) {
$colors = $config->get('Core.ColorKeywords');
}
$color = trim($color);
if ($color === '') {
return false;
}
$lower = strtolower($color);
if (isset($colors[$lower])) {
return $colors[$lower];
}
if (preg_match('#(rgb|rgba|hsl|hsla)\(#', $color, $matches) === 1) {
$length = strlen($color);
if (strpos($color, ')') !== $length - 1) {
return false;
}
// get used function : rgb, rgba, hsl or hsla
$function = $matches[1];
$parameters_size = 3;
$alpha_channel = false;
if (substr($function, -1) === 'a') {
$parameters_size = 4;
$alpha_channel = true;
}
/*
* Allowed types for values :
* parameter_position => [type => max_value]
*/
$allowed_types = array(
1 => array('percentage' => 100, 'integer' => 255),
2 => array('percentage' => 100, 'integer' => 255),
3 => array('percentage' => 100, 'integer' => 255),
);
$allow_different_types = false;
if (strpos($function, 'hsl') !== false) {
$allowed_types = array(
1 => array('integer' => 360),
2 => array('percentage' => 100),
3 => array('percentage' => 100),
);
$allow_different_types = true;
}
$values = trim(str_replace($function, '', $color), ' ()');
$parts = explode(',', $values);
if (count($parts) !== $parameters_size) {
return false;
}
$type = false;
$new_parts = array();
$i = 0;
foreach ($parts as $part) {
$i++;
$part = trim($part);
if ($part === '') {
return false;
}
// different check for alpha channel
if ($alpha_channel === true && $i === count($parts)) {
$result = $this->alpha->validate($part, $config, $context);
if ($result === false) {
return false;
}
$new_parts[] = (string)$result;
continue;
}
if (substr($part, -1) === '%') {
$current_type = 'percentage';
} else {
$current_type = 'integer';
}
if (!array_key_exists($current_type, $allowed_types[$i])) {
return false;
}
if (!$type) {
$type = $current_type;
}
if ($allow_different_types === false && $type != $current_type) {
return false;
}
$max_value = $allowed_types[$i][$current_type];
if ($current_type == 'integer') {
// Return value between range 0 -> $max_value
$new_parts[] = (int)max(min($part, $max_value), 0);
} elseif ($current_type == 'percentage') {
$new_parts[] = (float)max(min(rtrim($part, '%'), $max_value), 0) . '%';
}
}
$new_values = implode(',', $new_parts);
$color = $function . '(' . $new_values . ')';
} else {
// hexadecimal handling
if ($color[0] === '#') {
$hex = substr($color, 1);
} else {
$hex = $color;
$color = '#' . $color;
}
$length = strlen($hex);
if ($length !== 3 && $length !== 6) {
return false;
}
if (!ctype_xdigit($hex)) {
return false;
}
}
return $color;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Multiple.php 0000644 00000004054 14716425662 0017501 0 ustar 00 single = $single;
$this->max = $max;
}
/**
* @param string $string
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return bool|string
*/
public function validate($string, $config, $context)
{
$string = $this->mungeRgb($this->parseCDATA($string));
if ($string === '') {
return false;
}
$parts = explode(' ', $string); // parseCDATA replaced \r, \t and \n
$length = count($parts);
$final = '';
for ($i = 0, $num = 0; $i < $length && $num < $this->max; $i++) {
if (ctype_space($parts[$i])) {
continue;
}
$result = $this->single->validate($parts[$i], $config, $context);
if ($result !== false) {
$final .= $result . ' ';
$num++;
}
}
if ($final === '') {
return false;
}
return rtrim($final);
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Percentage.php 0000644 00000002377 14716425662 0017771 0 ustar 00 number_def = new HTMLPurifier_AttrDef_CSS_Number($non_negative);
}
/**
* @param string $string
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return bool|string
*/
public function validate($string, $config, $context)
{
$string = $this->parseCDATA($string);
if ($string === '') {
return false;
}
$length = strlen($string);
if ($length === 1) {
return false;
}
if ($string[$length - 1] !== '%') {
return false;
}
$number = substr($string, 0, $length - 1);
$number = $this->number_def->validate($number, $config, $context);
if ($number === false) {
return false;
}
return "$number%";
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Ident.php 0000644 00000001324 14716425662 0016746 0 ustar 00 getCSSDefinition();
$this->info['font-style'] = $def->info['font-style'];
$this->info['font-variant'] = $def->info['font-variant'];
$this->info['font-weight'] = $def->info['font-weight'];
$this->info['font-size'] = $def->info['font-size'];
$this->info['line-height'] = $def->info['line-height'];
$this->info['font-family'] = $def->info['font-family'];
}
/**
* @param string $string
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return bool|string
*/
public function validate($string, $config, $context)
{
static $system_fonts = array(
'caption' => true,
'icon' => true,
'menu' => true,
'message-box' => true,
'small-caption' => true,
'status-bar' => true
);
// regular pre-processing
$string = $this->parseCDATA($string);
if ($string === '') {
return false;
}
// check if it's one of the keywords
$lowercase_string = strtolower($string);
if (isset($system_fonts[$lowercase_string])) {
return $lowercase_string;
}
$bits = explode(' ', $string); // bits to process
$stage = 0; // this indicates what we're looking for
$caught = array(); // which stage 0 properties have we caught?
$stage_1 = array('font-style', 'font-variant', 'font-weight');
$final = ''; // output
for ($i = 0, $size = count($bits); $i < $size; $i++) {
if ($bits[$i] === '') {
continue;
}
switch ($stage) {
case 0: // attempting to catch font-style, font-variant or font-weight
foreach ($stage_1 as $validator_name) {
if (isset($caught[$validator_name])) {
continue;
}
$r = $this->info[$validator_name]->validate(
$bits[$i],
$config,
$context
);
if ($r !== false) {
$final .= $r . ' ';
$caught[$validator_name] = true;
break;
}
}
// all three caught, continue on
if (count($caught) >= 3) {
$stage = 1;
}
if ($r !== false) {
break;
}
case 1: // attempting to catch font-size and perhaps line-height
$found_slash = false;
if (strpos($bits[$i], '/') !== false) {
list($font_size, $line_height) =
explode('/', $bits[$i]);
if ($line_height === '') {
// ooh, there's a space after the slash!
$line_height = false;
$found_slash = true;
}
} else {
$font_size = $bits[$i];
$line_height = false;
}
$r = $this->info['font-size']->validate(
$font_size,
$config,
$context
);
if ($r !== false) {
$final .= $r;
// attempt to catch line-height
if ($line_height === false) {
// we need to scroll forward
for ($j = $i + 1; $j < $size; $j++) {
if ($bits[$j] === '') {
continue;
}
if ($bits[$j] === '/') {
if ($found_slash) {
return false;
} else {
$found_slash = true;
continue;
}
}
$line_height = $bits[$j];
break;
}
} else {
// slash already found
$found_slash = true;
$j = $i;
}
if ($found_slash) {
$i = $j;
$r = $this->info['line-height']->validate(
$line_height,
$config,
$context
);
if ($r !== false) {
$final .= '/' . $r;
}
}
$final .= ' ';
$stage = 2;
break;
}
return false;
case 2: // attempting to catch font-family
$font_family =
implode(' ', array_slice($bits, $i, $size - $i));
$r = $this->info['font-family']->validate(
$font_family,
$config,
$context
);
if ($r !== false) {
$final .= $r . ' ';
// processing completed successfully
return rtrim($final);
}
return false;
}
}
return false;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/AttrDef/CSS/TextDecoration.php 0000644 00000002204 14716425662 0020635 0 ustar 00 true,
'overline' => true,
'underline' => true,
);
$string = strtolower($this->parseCDATA($string));
if ($string === 'none') {
return $string;
}
$parts = explode(' ', $string);
$final = '';
foreach ($parts as $part) {
if (isset($allowed_values[$part])) {
$final .= $part . ' ';
}
}
$final = rtrim($final);
if ($final === '') {
return false;
}
return $final;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Composite.php 0000644 00000002464 14716425662 0017653 0 ustar 00 defs = $defs;
}
/**
* @param string $string
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return bool|string
*/
public function validate($string, $config, $context)
{
foreach ($this->defs as $i => $def) {
$result = $this->defs[$i]->validate($string, $config, $context);
if ($result !== false) {
return $result;
}
}
return false;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Border.php 0000644 00000003067 14716425662 0017126 0 ustar 00 getCSSDefinition();
$this->info['border-width'] = $def->info['border-width'];
$this->info['border-style'] = $def->info['border-style'];
$this->info['border-top-color'] = $def->info['border-top-color'];
}
/**
* @param string $string
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return bool|string
*/
public function validate($string, $config, $context)
{
$string = $this->parseCDATA($string);
$string = $this->mungeRgb($string);
$bits = explode(' ', $string);
$done = array(); // segments we've finished
$ret = ''; // return value
foreach ($bits as $bit) {
foreach ($this->info as $propname => $validator) {
if (isset($done[$propname])) {
continue;
}
$r = $validator->validate($bit, $config, $context);
if ($r !== false) {
$ret .= $r . ' ';
$done[$propname] = true;
break;
}
}
}
return rtrim($ret);
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/AttrDef/Switch.php 0000644 00000002411 14716425662 0016512 0 ustar 00 tag = $tag;
$this->withTag = $with_tag;
$this->withoutTag = $without_tag;
}
/**
* @param string $string
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return bool|string
*/
public function validate($string, $config, $context)
{
$token = $context->get('CurrentToken', true);
if (!$token || $token->name !== $this->tag) {
return $this->withoutTag->validate($string, $config, $context);
} else {
return $this->withTag->validate($string, $config, $context);
}
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/AttrDef/error_log; 0000644 00000175371 14716425662 0016570 0 ustar 00 [24-Sep-2023 10:11:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI.php on line 7
[24-Sep-2023 23:46:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Clone.php on line 7
[07-Nov-2023 10:50:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Integer.php on line 10
[15-Nov-2023 09:01:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Text.php on line 6
[15-Nov-2023 20:53:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Lang.php on line 7
[16-Nov-2023 13:41:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS.php on line 14
[22-Nov-2023 09:19:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Enum.php on line 10
[28-Nov-2023 20:56:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS.php on line 14
[28-Nov-2023 20:56:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Clone.php on line 7
[28-Nov-2023 20:56:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Text.php on line 6
[28-Nov-2023 20:56:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Enum.php on line 10
[28-Nov-2023 20:56:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI.php on line 7
[28-Nov-2023 20:56:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Lang.php on line 7
[28-Nov-2023 20:56:51 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Integer.php on line 10
[29-Nov-2023 21:14:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI.php on line 7
[29-Nov-2023 21:14:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Enum.php on line 10
[29-Nov-2023 21:14:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS.php on line 14
[29-Nov-2023 21:14:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Integer.php on line 10
[29-Nov-2023 21:14:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Text.php on line 6
[29-Nov-2023 21:14:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Lang.php on line 7
[29-Nov-2023 21:14:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Clone.php on line 7
[29-Nov-2023 21:27:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Enum.php on line 10
[29-Nov-2023 21:27:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Integer.php on line 10
[29-Nov-2023 21:27:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS.php on line 14
[29-Nov-2023 21:27:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI.php on line 7
[29-Nov-2023 21:27:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Clone.php on line 7
[29-Nov-2023 21:27:51 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Text.php on line 6
[29-Nov-2023 21:27:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Lang.php on line 7
[30-Nov-2023 06:34:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI.php on line 7
[30-Nov-2023 12:46:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Enum.php on line 10
[30-Nov-2023 12:46:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS.php on line 14
[30-Nov-2023 12:46:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Integer.php on line 10
[30-Nov-2023 12:47:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Lang.php on line 7
[30-Nov-2023 12:47:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI.php on line 7
[30-Nov-2023 12:47:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Text.php on line 6
[30-Nov-2023 12:47:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Clone.php on line 7
[03-Dec-2023 12:49:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Clone.php on line 7
[31-Dec-2023 19:38:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS.php on line 14
[31-Dec-2023 20:06:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Enum.php on line 10
[01-Jan-2024 18:59:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Text.php on line 6
[11-Jan-2024 22:49:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Clone.php on line 7
[12-Jan-2024 13:16:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Integer.php on line 10
[20-Jan-2024 07:39:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI.php on line 7
[20-Jan-2024 08:58:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Lang.php on line 7
[11-Mar-2024 22:35:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Text.php on line 6
[12-Mar-2024 22:13:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Enum.php on line 10
[14-Mar-2024 19:05:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Text.php on line 6
[19-Mar-2024 18:19:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS.php on line 14
[04-Apr-2024 22:59:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Clone.php on line 7
[04-Apr-2024 23:29:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Enum.php on line 10
[04-Apr-2024 23:40:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Integer.php on line 10
[05-Apr-2024 00:19:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Lang.php on line 7
[05-Apr-2024 19:23:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Integer.php on line 10
[09-Apr-2024 18:30:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Clone.php on line 7
[11-Apr-2024 01:21:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI.php on line 7
[15-Apr-2024 08:35:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Enum.php on line 10
[16-Apr-2024 00:28:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Lang.php on line 7
[02-May-2024 13:25:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Enum.php on line 10
[03-May-2024 08:15:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Enum.php on line 10
[03-May-2024 08:51:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Clone.php on line 7
[03-May-2024 10:15:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI.php on line 7
[03-May-2024 12:32:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Text.php on line 6
[03-May-2024 13:20:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Integer.php on line 10
[03-May-2024 17:36:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS.php on line 14
[03-May-2024 20:26:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Lang.php on line 7
[05-May-2024 01:08:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI.php on line 7
[05-May-2024 01:08:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Text.php on line 6
[05-May-2024 01:09:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Lang.php on line 7
[05-May-2024 01:09:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Integer.php on line 10
[05-May-2024 01:09:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Enum.php on line 10
[05-May-2024 01:09:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS.php on line 14
[05-May-2024 01:31:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Clone.php on line 7
[05-May-2024 11:04:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI.php on line 7
[05-May-2024 11:04:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Text.php on line 6
[05-May-2024 11:04:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Lang.php on line 7
[05-May-2024 11:04:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Integer.php on line 10
[05-May-2024 11:04:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Enum.php on line 10
[05-May-2024 11:04:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS.php on line 14
[05-May-2024 11:26:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Clone.php on line 7
[05-May-2024 20:30:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI.php on line 7
[05-May-2024 20:30:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Text.php on line 6
[05-May-2024 20:30:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Integer.php on line 10
[05-May-2024 20:30:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Lang.php on line 7
[05-May-2024 20:30:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Enum.php on line 10
[05-May-2024 20:30:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS.php on line 14
[05-May-2024 20:51:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Clone.php on line 7
[12-May-2024 03:58:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS.php on line 14
[12-May-2024 05:02:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI.php on line 7
[12-May-2024 16:44:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Text.php on line 6
[13-May-2024 11:15:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Text.php on line 6
[13-May-2024 11:54:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Clone.php on line 7
[13-May-2024 12:07:02 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Integer.php on line 10
[13-May-2024 12:54:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Lang.php on line 7
[13-May-2024 13:04:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Enum.php on line 10
[14-May-2024 20:12:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI.php on line 7
[14-May-2024 20:12:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Text.php on line 6
[14-May-2024 20:13:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Lang.php on line 7
[14-May-2024 20:13:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Integer.php on line 10
[14-May-2024 20:13:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Enum.php on line 10
[14-May-2024 20:13:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS.php on line 14
[14-May-2024 20:18:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Clone.php on line 7
[15-May-2024 07:28:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS.php on line 14
[18-May-2024 20:34:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Text.php on line 6
[18-May-2024 20:47:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Lang.php on line 7
[18-May-2024 22:43:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Clone.php on line 7
[19-May-2024 02:32:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Integer.php on line 10
[19-May-2024 06:57:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Enum.php on line 10
[25-May-2024 20:05:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Clone.php on line 7
[26-May-2024 07:44:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Integer.php on line 10
[31-May-2024 16:17:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI.php on line 7
[03-Jun-2024 15:25:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Lang.php on line 7
[05-Jun-2024 01:07:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Text.php on line 6
[14-Jun-2024 10:08:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Enum.php on line 10
[14-Jun-2024 10:32:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Text.php on line 6
[14-Jun-2024 10:44:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Lang.php on line 7
[14-Jun-2024 12:22:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Clone.php on line 7
[14-Jun-2024 13:59:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Integer.php on line 10
[15-Jun-2024 12:55:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Lang.php on line 7
[15-Jun-2024 14:19:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Text.php on line 6
[18-Jun-2024 02:11:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Enum.php on line 10
[18-Jun-2024 05:32:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS.php on line 14
[18-Jun-2024 14:20:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Clone.php on line 7
[18-Jun-2024 22:55:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI.php on line 7
[18-Jun-2024 22:56:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Text.php on line 6
[18-Jun-2024 22:56:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Lang.php on line 7
[18-Jun-2024 22:56:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Integer.php on line 10
[18-Jun-2024 22:56:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Enum.php on line 10
[18-Jun-2024 22:56:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS.php on line 14
[18-Jun-2024 23:00:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Clone.php on line 7
[19-Jun-2024 07:53:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI.php on line 7
[19-Jun-2024 07:53:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Text.php on line 6
[19-Jun-2024 07:54:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Lang.php on line 7
[19-Jun-2024 07:54:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Integer.php on line 10
[19-Jun-2024 07:54:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Enum.php on line 10
[19-Jun-2024 07:54:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS.php on line 14
[19-Jun-2024 07:57:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Clone.php on line 7
[19-Jun-2024 20:43:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI.php on line 7
[19-Jun-2024 20:43:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Text.php on line 6
[19-Jun-2024 20:43:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Lang.php on line 7
[19-Jun-2024 20:43:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Integer.php on line 10
[19-Jun-2024 20:43:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Enum.php on line 10
[19-Jun-2024 20:43:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS.php on line 14
[19-Jun-2024 20:47:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Clone.php on line 7
[20-Jun-2024 11:13:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Integer.php on line 10
[20-Jun-2024 18:35:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Text.php on line 6
[21-Jun-2024 04:20:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI.php on line 7
[21-Jun-2024 11:50:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS.php on line 14
[28-Jun-2024 02:37:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Integer.php on line 10
[28-Jun-2024 03:05:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI.php on line 7
[28-Jun-2024 04:02:51 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS.php on line 14
[28-Jun-2024 16:46:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Enum.php on line 10
[29-Jun-2024 01:15:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Clone.php on line 7
[29-Jun-2024 22:02:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Enum.php on line 10
[29-Jun-2024 23:38:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Clone.php on line 7
[30-Jun-2024 00:04:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Lang.php on line 7
[30-Jun-2024 02:29:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Text.php on line 6
[03-Jul-2024 10:12:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Integer.php on line 10
[05-Jul-2024 00:07:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Integer.php on line 10
[05-Jul-2024 01:20:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI.php on line 7
[05-Jul-2024 03:07:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS.php on line 14
[06-Jul-2024 02:31:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Enum.php on line 10
[06-Jul-2024 04:49:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Clone.php on line 7
[06-Jul-2024 05:38:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Lang.php on line 7
[06-Jul-2024 09:13:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Text.php on line 6
[09-Jul-2024 12:13:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Lang.php on line 7
[09-Jul-2024 14:05:51 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI.php on line 7
[11-Jul-2024 00:41:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Integer.php on line 10
[11-Jul-2024 01:24:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI.php on line 7
[11-Jul-2024 03:26:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS.php on line 14
[12-Jul-2024 03:43:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Lang.php on line 7
[14-Jul-2024 18:58:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Text.php on line 6
[18-Jul-2024 19:02:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Text.php on line 6
[18-Jul-2024 19:08:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Lang.php on line 7
[20-Jul-2024 15:13:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Text.php on line 6
[22-Jul-2024 19:30:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI.php on line 7
[22-Jul-2024 19:30:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Text.php on line 6
[22-Jul-2024 19:31:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Lang.php on line 7
[22-Jul-2024 19:31:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Integer.php on line 10
[22-Jul-2024 19:31:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Enum.php on line 10
[22-Jul-2024 19:31:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS.php on line 14
[22-Jul-2024 19:43:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Clone.php on line 7
[24-Jul-2024 00:23:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Enum.php on line 10
[24-Jul-2024 13:34:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS.php on line 14
[25-Jul-2024 03:48:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Text.php on line 6
[25-Jul-2024 11:31:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI.php on line 7
[25-Jul-2024 15:29:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Integer.php on line 10
[25-Jul-2024 17:48:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS.php on line 14
[25-Jul-2024 22:09:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Clone.php on line 7
[03-Aug-2024 10:38:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Clone.php on line 7
[04-Aug-2024 16:38:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Integer.php on line 10
[05-Aug-2024 11:07:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Enum.php on line 10
[06-Aug-2024 22:57:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Text.php on line 6
[09-Aug-2024 19:48:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Integer.php on line 10
[11-Aug-2024 20:58:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Enum.php on line 10
[13-Aug-2024 22:50:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Lang.php on line 7
[15-Aug-2024 22:00:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Text.php on line 6
[16-Aug-2024 09:49:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS.php on line 14
[16-Aug-2024 12:27:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Integer.php on line 10
[18-Aug-2024 08:30:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Text.php on line 6
[20-Aug-2024 19:03:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Lang.php on line 7
[20-Aug-2024 23:22:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI.php on line 7
[21-Aug-2024 11:25:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Text.php on line 6
[22-Aug-2024 08:13:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Enum.php on line 10
[25-Aug-2024 08:37:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS.php on line 14
[25-Aug-2024 09:53:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Text.php on line 6
[25-Aug-2024 14:56:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI.php on line 7
[25-Aug-2024 19:17:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Lang.php on line 7
[26-Aug-2024 06:00:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Enum.php on line 10
[26-Aug-2024 08:30:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Clone.php on line 7
[31-Aug-2024 09:57:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Enum.php on line 10
[31-Aug-2024 18:00:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS.php on line 14
[31-Aug-2024 21:14:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI.php on line 7
[31-Aug-2024 23:17:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Integer.php on line 10
[01-Sep-2024 01:16:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Clone.php on line 7
[01-Sep-2024 02:31:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS.php on line 14
[01-Sep-2024 05:10:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Integer.php on line 10
[01-Sep-2024 05:33:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Text.php on line 6
[01-Sep-2024 12:29:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Enum.php on line 10
[01-Sep-2024 23:19:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI.php on line 7
[01-Sep-2024 23:19:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Text.php on line 6
[01-Sep-2024 23:19:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Lang.php on line 7
[01-Sep-2024 23:19:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Integer.php on line 10
[01-Sep-2024 23:20:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Enum.php on line 10
[01-Sep-2024 23:20:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS.php on line 14
[01-Sep-2024 23:42:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Clone.php on line 7
[05-Sep-2024 08:13:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Clone.php on line 7
[10-Sep-2024 02:07:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Clone.php on line 7
[10-Sep-2024 16:11:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Enum.php on line 10
[11-Sep-2024 22:59:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI.php on line 7
[11-Sep-2024 22:59:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Text.php on line 6
[11-Sep-2024 22:59:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Lang.php on line 7
[11-Sep-2024 22:59:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Integer.php on line 10
[11-Sep-2024 22:59:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Enum.php on line 10
[11-Sep-2024 22:59:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS.php on line 14
[11-Sep-2024 23:11:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Clone.php on line 7
[13-Sep-2024 06:49:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI.php on line 7
[13-Sep-2024 06:49:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Text.php on line 6
[13-Sep-2024 06:49:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Lang.php on line 7
[13-Sep-2024 06:49:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Integer.php on line 10
[13-Sep-2024 06:49:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Enum.php on line 10
[13-Sep-2024 06:49:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS.php on line 14
[13-Sep-2024 06:50:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI.php on line 7
[13-Sep-2024 06:50:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Text.php on line 6
[13-Sep-2024 06:50:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Lang.php on line 7
[13-Sep-2024 06:50:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Integer.php on line 10
[13-Sep-2024 06:50:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Enum.php on line 10
[13-Sep-2024 06:50:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS.php on line 14
[13-Sep-2024 07:07:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Clone.php on line 7
[13-Sep-2024 07:08:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Clone.php on line 7
[13-Sep-2024 09:41:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Text.php on line 6
[14-Sep-2024 05:49:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Lang.php on line 7
[15-Sep-2024 04:21:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Clone.php on line 7
[16-Sep-2024 02:16:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Integer.php on line 10
[16-Sep-2024 04:50:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Enum.php on line 10
[17-Sep-2024 21:56:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Lang.php on line 7
[21-Sep-2024 02:20:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Clone.php on line 7
[23-Sep-2024 12:42:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Clone.php on line 7
[27-Sep-2024 23:36:02 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Lang.php on line 7
[28-Sep-2024 09:33:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Clone.php on line 7
[01-Oct-2024 02:36:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS.php on line 14
[03-Oct-2024 22:11:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI.php on line 7
[06-Oct-2024 18:40:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Clone.php on line 7
[07-Oct-2024 23:23:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Lang.php on line 7
[08-Oct-2024 16:01:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Text.php on line 6
[09-Oct-2024 02:11:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Enum.php on line 10
[09-Oct-2024 05:00:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Integer.php on line 10
[09-Oct-2024 05:05:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS.php on line 14
[09-Oct-2024 06:54:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS.php on line 14
[09-Oct-2024 11:14:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Clone.php on line 7
[09-Oct-2024 19:20:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Text.php on line 6
[09-Oct-2024 21:07:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI.php on line 7
[12-Oct-2024 17:47:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Clone.php on line 7
[14-Oct-2024 23:35:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Clone.php on line 7
[17-Oct-2024 20:24:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Integer.php on line 10
[18-Oct-2024 12:10:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Clone.php on line 7
[18-Oct-2024 16:23:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI.php on line 7
[18-Oct-2024 16:29:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Enum.php on line 10
[18-Oct-2024 16:30:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Text.php on line 6
[18-Oct-2024 16:31:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Integer.php on line 10
[18-Oct-2024 16:33:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS.php on line 14
[18-Oct-2024 16:34:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Lang.php on line 7
[18-Oct-2024 16:34:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Clone.php on line 7
[18-Oct-2024 21:12:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Enum.php on line 10
[23-Oct-2024 19:19:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Integer.php on line 10
[31-Oct-2024 14:10:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI.php on line 7
[31-Oct-2024 14:10:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Text.php on line 6
[31-Oct-2024 14:10:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Lang.php on line 7
[31-Oct-2024 14:10:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Integer.php on line 10
[31-Oct-2024 14:10:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Enum.php on line 10
[31-Oct-2024 14:10:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS.php on line 14
[31-Oct-2024 14:27:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Clone.php on line 7
[01-Nov-2024 18:00:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS.php on line 14
[04-Nov-2024 02:40:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI.php on line 7
[06-Nov-2024 08:20:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Lang.php on line 7
[09-Nov-2024 02:51:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI.php on line 7
[10-Nov-2024 04:42:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI.php on line 7
[10-Nov-2024 04:43:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Text.php on line 6
[10-Nov-2024 04:43:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Lang.php on line 7
[10-Nov-2024 04:43:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Integer.php on line 10
[10-Nov-2024 04:43:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Enum.php on line 10
[10-Nov-2024 04:43:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS.php on line 14
[10-Nov-2024 04:43:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/Clone.php on line 7
htmlpurifier/library/HTMLPurifier/AttrDef/Clone.php 0000644 00000001550 14716425662 0016314 0 ustar 00 clone = $clone;
}
/**
* @param string $v
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return bool|string
*/
public function validate($v, $config, $context)
{
return $this->clone->validate($v, $config, $context);
}
/**
* @param string $string
* @return HTMLPurifier_AttrDef
*/
public function make($string)
{
return clone $this->clone;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/AttrDef/Lang.php 0000644 00000004604 14716425662 0016140 0 ustar 00 8 || !ctype_alnum($subtags[1])) {
return $new_string;
}
if (!ctype_lower($subtags[1])) {
$subtags[1] = strtolower($subtags[1]);
}
$new_string .= '-' . $subtags[1];
if ($num_subtags == 2) {
return $new_string;
}
// process all other subtags, index 2 and up
for ($i = 2; $i < $num_subtags; $i++) {
$length = strlen($subtags[$i]);
if ($length == 0 || $length > 8 || !ctype_alnum($subtags[$i])) {
return $new_string;
}
if (!ctype_lower($subtags[$i])) {
$subtags[$i] = strtolower($subtags[$i]);
}
$new_string .= '-' . $subtags[$i];
}
return $new_string;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv6.php 0000644 00000004655 14716425662 0016510 0 ustar 00 ip4) {
$this->_loadRegex();
}
$original = $aIP;
$hex = '[0-9a-fA-F]';
$blk = '(?:' . $hex . '{1,4})';
$pre = '(?:/(?:12[0-8]|1[0-1][0-9]|[1-9][0-9]|[0-9]))'; // /0 - /128
// prefix check
if (strpos($aIP, '/') !== false) {
if (preg_match('#' . $pre . '$#s', $aIP, $find)) {
$aIP = substr($aIP, 0, 0 - strlen($find[0]));
unset($find);
} else {
return false;
}
}
// IPv4-compatiblity check
if (preg_match('#(?<=:' . ')' . $this->ip4 . '$#s', $aIP, $find)) {
$aIP = substr($aIP, 0, 0 - strlen($find[0]));
$ip = explode('.', $find[0]);
$ip = array_map('dechex', $ip);
$aIP .= $ip[0] . $ip[1] . ':' . $ip[2] . $ip[3];
unset($find, $ip);
}
// compression check
$aIP = explode('::', $aIP);
$c = count($aIP);
if ($c > 2) {
return false;
} elseif ($c == 2) {
list($first, $second) = $aIP;
$first = explode(':', $first);
$second = explode(':', $second);
if (count($first) + count($second) > 8) {
return false;
}
while (count($first) < 8) {
array_push($first, '0');
}
array_splice($first, 8 - count($second), 8, $second);
$aIP = $first;
unset($first, $second);
} else {
$aIP = explode(':', $aIP[0]);
}
$c = count($aIP);
if ($c != 8) {
return false;
}
// All the pieces should be 16-bit hex strings. Are they?
foreach ($aIP as $piece) {
if (!preg_match('#^[0-9a-fA-F]{4}$#s', sprintf('%04s', $piece))) {
return false;
}
}
return $original;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/AttrDef/URI/error_log; 0000644 00000110151 14716425662 0017210 0 ustar 00 [15-Sep-2023 08:18:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv4.php on line 7
[25-Sep-2023 07:27:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email.php on line 3
[27-Sep-2023 18:20:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_IPv4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv6.php on line 9
[19-Nov-2023 07:28:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Host.php on line 6
[02-Dec-2023 17:45:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Host.php on line 6
[02-Dec-2023 17:45:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email.php on line 3
[02-Dec-2023 17:45:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv4.php on line 7
[02-Dec-2023 17:45:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_IPv4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv6.php on line 9
[03-Dec-2023 07:30:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv4.php on line 7
[03-Dec-2023 11:26:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_IPv4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv6.php on line 9
[03-Dec-2023 11:26:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Host.php on line 6
[03-Dec-2023 11:26:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv4.php on line 7
[03-Dec-2023 11:26:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email.php on line 3
[03-Dec-2023 17:14:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Host.php on line 6
[03-Dec-2023 17:14:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv4.php on line 7
[03-Dec-2023 17:14:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_IPv4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv6.php on line 9
[03-Dec-2023 17:14:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email.php on line 3
[03-Dec-2023 17:16:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Host.php on line 6
[03-Dec-2023 17:16:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email.php on line 3
[03-Dec-2023 17:16:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv4.php on line 7
[03-Dec-2023 17:17:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_IPv4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv6.php on line 9
[07-Dec-2023 19:53:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_IPv4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv6.php on line 9
[02-Jan-2024 04:45:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Host.php on line 6
[02-Jan-2024 06:34:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email.php on line 3
[16-Jan-2024 15:29:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv4.php on line 7
[22-Jan-2024 04:20:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_IPv4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv6.php on line 9
[28-Mar-2024 16:59:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email.php on line 3
[01-Apr-2024 13:46:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Host.php on line 6
[14-Apr-2024 04:35:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv4.php on line 7
[16-Apr-2024 21:22:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_IPv4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv6.php on line 9
[21-Apr-2024 01:34:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Host.php on line 6
[21-Apr-2024 05:35:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_IPv4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv6.php on line 9
[21-Apr-2024 10:07:51 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email.php on line 3
[21-Apr-2024 11:38:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv4.php on line 7
[05-May-2024 02:44:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_IPv4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv6.php on line 9
[05-May-2024 02:44:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv4.php on line 7
[05-May-2024 02:44:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Host.php on line 6
[05-May-2024 02:45:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email.php on line 3
[05-May-2024 12:39:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_IPv4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv6.php on line 9
[05-May-2024 12:39:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv4.php on line 7
[05-May-2024 12:39:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Host.php on line 6
[05-May-2024 12:39:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email.php on line 3
[05-May-2024 17:52:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email.php on line 3
[05-May-2024 19:08:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv4.php on line 7
[05-May-2024 21:50:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_IPv4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv6.php on line 9
[05-May-2024 21:50:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv4.php on line 7
[05-May-2024 21:50:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Host.php on line 6
[05-May-2024 21:50:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email.php on line 3
[06-May-2024 04:18:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_IPv4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv6.php on line 9
[06-May-2024 11:02:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Host.php on line 6
[12-May-2024 12:05:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_IPv4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv6.php on line 9
[13-May-2024 12:13:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email.php on line 3
[14-May-2024 20:50:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_IPv4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv6.php on line 9
[14-May-2024 20:50:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv4.php on line 7
[14-May-2024 20:50:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Host.php on line 6
[14-May-2024 20:50:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email.php on line 3
[18-May-2024 13:28:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Host.php on line 6
[19-May-2024 13:03:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email.php on line 3
[24-May-2024 20:14:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email.php on line 3
[29-May-2024 19:07:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Host.php on line 6
[01-Jun-2024 02:54:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_IPv4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv6.php on line 9
[05-Jun-2024 11:59:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv4.php on line 7
[14-Jun-2024 15:50:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Host.php on line 6
[14-Jun-2024 15:50:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email.php on line 3
[18-Jun-2024 23:05:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_IPv4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv6.php on line 9
[18-Jun-2024 23:05:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv4.php on line 7
[18-Jun-2024 23:05:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Host.php on line 6
[18-Jun-2024 23:05:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email.php on line 3
[19-Jun-2024 08:02:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_IPv4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv6.php on line 9
[19-Jun-2024 08:02:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv4.php on line 7
[19-Jun-2024 08:03:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Host.php on line 6
[19-Jun-2024 08:03:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email.php on line 3
[19-Jun-2024 20:52:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_IPv4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv6.php on line 9
[19-Jun-2024 20:52:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv4.php on line 7
[19-Jun-2024 20:52:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Host.php on line 6
[19-Jun-2024 20:52:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email.php on line 3
[21-Jun-2024 07:12:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv4.php on line 7
[21-Jun-2024 12:29:51 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_IPv4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv6.php on line 9
[21-Jun-2024 14:07:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email.php on line 3
[21-Jun-2024 16:57:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Host.php on line 6
[28-Jun-2024 05:14:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Host.php on line 6
[29-Jun-2024 23:56:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email.php on line 3
[30-Jun-2024 00:46:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_IPv4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv6.php on line 9
[03-Jul-2024 23:49:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Host.php on line 6
[05-Jul-2024 04:26:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Host.php on line 6
[06-Jul-2024 07:37:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_IPv4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv6.php on line 9
[11-Jul-2024 04:46:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Host.php on line 6
[14-Jul-2024 23:13:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_IPv4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv6.php on line 9
[16-Jul-2024 05:14:02 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv4.php on line 7
[22-Jul-2024 20:55:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_IPv4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv6.php on line 9
[22-Jul-2024 20:55:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv4.php on line 7
[22-Jul-2024 20:55:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Host.php on line 6
[22-Jul-2024 20:55:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email.php on line 3
[24-Jul-2024 05:17:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email.php on line 3
[29-Jul-2024 03:19:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email.php on line 3
[29-Jul-2024 05:03:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_IPv4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv6.php on line 9
[29-Jul-2024 06:03:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv4.php on line 7
[29-Jul-2024 18:16:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Host.php on line 6
[29-Jul-2024 22:07:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email.php on line 3
[04-Aug-2024 21:07:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email.php on line 3
[10-Aug-2024 11:07:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_IPv4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv6.php on line 9
[10-Aug-2024 19:22:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Host.php on line 6
[11-Aug-2024 02:03:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email.php on line 3
[17-Aug-2024 11:57:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email.php on line 3
[20-Aug-2024 21:25:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_IPv4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv6.php on line 9
[20-Aug-2024 22:01:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email.php on line 3
[21-Aug-2024 12:12:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv4.php on line 7
[23-Aug-2024 21:14:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv4.php on line 7
[26-Aug-2024 07:26:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_IPv4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv6.php on line 9
[30-Aug-2024 15:01:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv4.php on line 7
[02-Sep-2024 00:55:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_IPv4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv6.php on line 9
[02-Sep-2024 00:55:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv4.php on line 7
[02-Sep-2024 00:55:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Host.php on line 6
[02-Sep-2024 00:55:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email.php on line 3
[04-Sep-2024 13:34:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv4.php on line 7
[04-Sep-2024 17:38:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email.php on line 3
[04-Sep-2024 20:39:51 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Host.php on line 6
[04-Sep-2024 23:01:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_IPv4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv6.php on line 9
[05-Sep-2024 07:16:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_IPv4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv6.php on line 9
[05-Sep-2024 12:02:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_IPv4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv6.php on line 9
[12-Sep-2024 00:26:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_IPv4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv6.php on line 9
[12-Sep-2024 00:26:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv4.php on line 7
[12-Sep-2024 00:26:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Host.php on line 6
[12-Sep-2024 00:26:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email.php on line 3
[13-Sep-2024 07:32:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_IPv4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv6.php on line 9
[13-Sep-2024 07:32:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv4.php on line 7
[13-Sep-2024 07:32:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Host.php on line 6
[13-Sep-2024 07:32:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email.php on line 3
[13-Sep-2024 07:33:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_IPv4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv6.php on line 9
[13-Sep-2024 07:33:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv4.php on line 7
[13-Sep-2024 07:34:02 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Host.php on line 6
[13-Sep-2024 07:34:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email.php on line 3
[15-Sep-2024 02:15:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_IPv4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv6.php on line 9
[16-Sep-2024 10:41:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Host.php on line 6
[17-Sep-2024 22:15:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv4.php on line 7
[17-Sep-2024 22:30:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email.php on line 3
[18-Sep-2024 03:09:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv4.php on line 7
[19-Sep-2024 02:03:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv4.php on line 7
[20-Sep-2024 16:52:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_IPv4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv6.php on line 9
[24-Sep-2024 03:35:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email.php on line 3
[26-Sep-2024 01:57:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_IPv4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv6.php on line 9
[26-Sep-2024 21:18:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_IPv4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv6.php on line 9
[28-Sep-2024 01:00:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_IPv4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv6.php on line 9
[28-Sep-2024 08:33:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_IPv4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv6.php on line 9
[28-Sep-2024 13:38:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv4.php on line 7
[01-Oct-2024 04:45:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Host.php on line 6
[05-Oct-2024 13:36:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_IPv4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv6.php on line 9
[11-Oct-2024 12:03:51 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv4.php on line 7
[13-Oct-2024 01:09:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_IPv4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv6.php on line 9
[13-Oct-2024 08:41:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Host.php on line 6
[13-Oct-2024 18:24:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email.php on line 3
[13-Oct-2024 22:08:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv4.php on line 7
[18-Oct-2024 18:20:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email.php on line 3
[18-Oct-2024 18:21:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv4.php on line 7
[18-Oct-2024 18:21:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_IPv4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv6.php on line 9
[18-Oct-2024 18:28:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Host.php on line 6
[23-Oct-2024 20:52:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Host.php on line 6
[25-Oct-2024 06:56:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email.php on line 3
[30-Oct-2024 08:24:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Host.php on line 6
[31-Oct-2024 15:16:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_IPv4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv6.php on line 9
[31-Oct-2024 15:16:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv4.php on line 7
[31-Oct-2024 15:16:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Host.php on line 6
[31-Oct-2024 15:16:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email.php on line 3
[06-Nov-2024 16:11:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv4.php on line 7
[06-Nov-2024 20:52:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_IPv4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv6.php on line 9
[10-Nov-2024 13:34:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_IPv4' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv6.php on line 9
[10-Nov-2024 13:35:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv4.php on line 7
[10-Nov-2024 13:35:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Host.php on line 6
[10-Nov-2024 13:35:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email.php on line 3
htmlpurifier/library/HTMLPurifier/AttrDef/URI/IPv4.php 0000644 00000001746 14716425662 0016504 0 ustar 00 ip4) {
$this->_loadRegex();
}
if (preg_match('#^' . $this->ip4 . '$#s', $aIP)) {
return $aIP;
}
return false;
}
/**
* Lazy load function to prevent regex from being stuffed in
* cache.
*/
protected function _loadRegex()
{
$oct = '(?:25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]|[0-9])'; // 0-255
$this->ip4 = "(?:{$oct}\\.{$oct}\\.{$oct}\\.{$oct})";
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email.php 0000644 00000000527 14716425662 0016745 0 ustar 00 "
// that needs more percent encoding to be done
if ($string == '') {
return false;
}
$string = trim($string);
$result = preg_match('/^[A-Z0-9._%-]+@[A-Z0-9.-]+\.[A-Z]{2,4}$/i', $string);
return $result ? $string : false;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email/error_log; 0000644 00000016361 14716425662 0020247 0 ustar 00 [17-Sep-2023 05:35:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_Email' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email/SimpleCheck.php on line 7
[05-Dec-2023 18:01:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_Email' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email/SimpleCheck.php on line 7
[06-Dec-2023 15:12:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_Email' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email/SimpleCheck.php on line 7
[07-Dec-2023 00:50:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_Email' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email/SimpleCheck.php on line 7
[07-Dec-2023 02:29:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_Email' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email/SimpleCheck.php on line 7
[23-Apr-2024 02:27:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_Email' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email/SimpleCheck.php on line 7
[05-May-2024 03:49:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_Email' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email/SimpleCheck.php on line 7
[05-May-2024 13:46:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_Email' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email/SimpleCheck.php on line 7
[05-May-2024 23:17:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_Email' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email/SimpleCheck.php on line 7
[14-May-2024 21:59:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_Email' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email/SimpleCheck.php on line 7
[18-Jun-2024 23:16:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_Email' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email/SimpleCheck.php on line 7
[19-Jun-2024 08:14:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_Email' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email/SimpleCheck.php on line 7
[19-Jun-2024 21:03:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_Email' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email/SimpleCheck.php on line 7
[30-Jun-2024 04:38:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_Email' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email/SimpleCheck.php on line 7
[06-Jul-2024 12:10:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_Email' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email/SimpleCheck.php on line 7
[22-Jul-2024 22:20:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_Email' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email/SimpleCheck.php on line 7
[24-Aug-2024 18:42:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_Email' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email/SimpleCheck.php on line 7
[26-Aug-2024 08:12:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_Email' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email/SimpleCheck.php on line 7
[02-Sep-2024 02:04:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_Email' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email/SimpleCheck.php on line 7
[05-Sep-2024 08:19:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_Email' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email/SimpleCheck.php on line 7
[12-Sep-2024 01:35:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_Email' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email/SimpleCheck.php on line 7
[13-Sep-2024 08:18:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_Email' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email/SimpleCheck.php on line 7
[13-Sep-2024 08:18:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_Email' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email/SimpleCheck.php on line 7
[15-Sep-2024 12:37:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_Email' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email/SimpleCheck.php on line 7
[21-Sep-2024 02:29:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_Email' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email/SimpleCheck.php on line 7
[22-Sep-2024 07:06:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_Email' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email/SimpleCheck.php on line 7
[27-Sep-2024 22:42:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_Email' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email/SimpleCheck.php on line 7
[18-Oct-2024 20:24:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_Email' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email/SimpleCheck.php on line 7
[31-Oct-2024 17:39:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_Email' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email/SimpleCheck.php on line 7
[03-Nov-2024 17:23:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_Email' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email/SimpleCheck.php on line 7
[10-Nov-2024 15:25:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_AttrDef_URI_Email' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email/SimpleCheck.php on line 7
htmlpurifier/library/HTMLPurifier/AttrDef/URI/Host.php 0000644 00000012050 14716425662 0016625 0 ustar 00 ipv4 = new HTMLPurifier_AttrDef_URI_IPv4();
$this->ipv6 = new HTMLPurifier_AttrDef_URI_IPv6();
}
/**
* @param string $string
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return bool|string
*/
public function validate($string, $config, $context)
{
$length = strlen($string);
// empty hostname is OK; it's usually semantically equivalent:
// the default host as defined by a URI scheme is used:
//
// If the URI scheme defines a default for host, then that
// default applies when the host subcomponent is undefined
// or when the registered name is empty (zero length).
if ($string === '') {
return '';
}
if ($length > 1 && $string[0] === '[' && $string[$length - 1] === ']') {
//IPv6
$ip = substr($string, 1, $length - 2);
$valid = $this->ipv6->validate($ip, $config, $context);
if ($valid === false) {
return false;
}
return '[' . $valid . ']';
}
// need to do checks on unusual encodings too
$ipv4 = $this->ipv4->validate($string, $config, $context);
if ($ipv4 !== false) {
return $ipv4;
}
// A regular domain name.
// This doesn't match I18N domain names, but we don't have proper IRI support,
// so force users to insert Punycode.
// There is not a good sense in which underscores should be
// allowed, since it's technically not! (And if you go as
// far to allow everything as specified by the DNS spec...
// well, that's literally everything, modulo some space limits
// for the components and the overall name (which, by the way,
// we are NOT checking!). So we (arbitrarily) decide this:
// let's allow underscores wherever we would have allowed
// hyphens, if they are enabled. This is a pretty good match
// for browser behavior, for example, a large number of browsers
// cannot handle foo_.example.com, but foo_bar.example.com is
// fairly well supported.
$underscore = $config->get('Core.AllowHostnameUnderscore') ? '_' : '';
// Based off of RFC 1738, but amended so that
// as per RFC 3696, the top label need only not be all numeric.
// The productions describing this are:
$a = '[a-z]'; // alpha
$an = '[a-z0-9]'; // alphanum
$and = "[a-z0-9-$underscore]"; // alphanum | "-"
// domainlabel = alphanum | alphanum *( alphanum | "-" ) alphanum
$domainlabel = "$an(?:$and*$an)?";
// AMENDED as per RFC 3696
// toplabel = alphanum | alphanum *( alphanum | "-" ) alphanum
// side condition: not all numeric
$toplabel = "$an(?:$and*$an)?";
// hostname = *( domainlabel "." ) toplabel [ "." ]
if (preg_match("/^(?:$domainlabel\.)*($toplabel)\.?$/i", $string, $matches)) {
if (!ctype_digit($matches[1])) {
return $string;
}
}
// PHP 5.3 and later support this functionality natively
if (function_exists('idn_to_ascii')) {
$string = idn_to_ascii($string);
// If we have Net_IDNA2 support, we can support IRIs by
// punycoding them. (This is the most portable thing to do,
// since otherwise we have to assume browsers support
} elseif ($config->get('Core.EnableIDNA')) {
$idna = new Net_IDNA2(array('encoding' => 'utf8', 'overlong' => false, 'strict' => true));
// we need to encode each period separately
$parts = explode('.', $string);
try {
$new_parts = array();
foreach ($parts as $part) {
$encodable = false;
for ($i = 0, $c = strlen($part); $i < $c; $i++) {
if (ord($part[$i]) > 0x7a) {
$encodable = true;
break;
}
}
if (!$encodable) {
$new_parts[] = $part;
} else {
$new_parts[] = $idna->encode($part);
}
}
$string = implode('.', $new_parts);
} catch (Exception $e) {
// XXX error reporting
}
}
// Try again
if (preg_match("/^($domainlabel\.)*$toplabel\.?$/i", $string)) {
return $string;
}
return false;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/AttrDef/CSS.php 0000644 00000010363 14716425662 0015706 0 ustar 00 parseCDATA($css);
$definition = $config->getCSSDefinition();
$allow_duplicates = $config->get("CSS.AllowDuplicates");
// According to the CSS2.1 spec, the places where a
// non-delimiting semicolon can appear are in strings
// escape sequences. So here is some dumb hack to
// handle quotes.
$len = strlen($css);
$accum = "";
$declarations = array();
$quoted = false;
for ($i = 0; $i < $len; $i++) {
$c = strcspn($css, ";'\"", $i);
$accum .= substr($css, $i, $c);
$i += $c;
if ($i == $len) break;
$d = $css[$i];
if ($quoted) {
$accum .= $d;
if ($d == $quoted) {
$quoted = false;
}
} else {
if ($d == ";") {
$declarations[] = $accum;
$accum = "";
} else {
$accum .= $d;
$quoted = $d;
}
}
}
if ($accum != "") $declarations[] = $accum;
$propvalues = array();
$new_declarations = '';
/**
* Name of the current CSS property being validated.
*/
$property = false;
$context->register('CurrentCSSProperty', $property);
foreach ($declarations as $declaration) {
if (!$declaration) {
continue;
}
if (!strpos($declaration, ':')) {
continue;
}
list($property, $value) = explode(':', $declaration, 2);
$property = trim($property);
$value = trim($value);
$ok = false;
do {
if (isset($definition->info[$property])) {
$ok = true;
break;
}
if (ctype_lower($property)) {
break;
}
$property = strtolower($property);
if (isset($definition->info[$property])) {
$ok = true;
break;
}
} while (0);
if (!$ok) {
continue;
}
// inefficient call, since the validator will do this again
if (strtolower(trim($value)) !== 'inherit') {
// inherit works for everything (but only on the base property)
$result = $definition->info[$property]->validate(
$value,
$config,
$context
);
} else {
$result = 'inherit';
}
if ($result === false) {
continue;
}
if ($allow_duplicates) {
$new_declarations .= "$property:$result;";
} else {
$propvalues[$property] = $result;
}
}
$context->destroy('CurrentCSSProperty');
// procedure does not write the new CSS simultaneously, so it's
// slightly inefficient, but it's the only way of getting rid of
// duplicates. Perhaps config to optimize it, but not now.
foreach ($propvalues as $prop => $value) {
$new_declarations .= "$prop:$value;";
}
return $new_declarations ? $new_declarations : false;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/Filter.php 0000644 00000003131 14716425662 0015145 0 ustar 00 preFilter,
* 2->preFilter, 3->preFilter, purify, 3->postFilter, 2->postFilter,
* 1->postFilter.
*
* @note Methods are not declared abstract as it is perfectly legitimate
* for an implementation not to want anything to happen on a step
*/
class HTMLPurifier_Filter
{
/**
* Name of the filter for identification purposes.
* @type string
*/
public $name;
/**
* Pre-processor function, handles HTML before HTML Purifier
* @param string $html
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return string
*/
public function preFilter($html, $config, $context)
{
return $html;
}
/**
* Post-processor function, handles HTML after HTML Purifier
* @param string $html
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return string
*/
public function postFilter($html, $config, $context)
{
return $html;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternalResources.php 0000644 00000001110 14716425662 0022461 0 ustar 00 get('EmbeddedURI', true)) {
return true;
}
return parent::filter($uri, $config, $context);
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/URIFilter/error_log; 0000644 00000170037 14716425662 0017036 0 ustar 00 [28-Nov-2023 20:42:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter_DisableExternal' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternalResources.php on line 3
[28-Nov-2023 20:42:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/Munge.php on line 3
[28-Nov-2023 20:42:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/HostBlacklist.php on line 7
[28-Nov-2023 20:43:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternal.php on line 3
[28-Nov-2023 20:43:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/MakeAbsolute.php on line 5
[28-Nov-2023 20:43:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableResources.php on line 3
[28-Nov-2023 20:43:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/SafeIframe.php on line 9
[28-Nov-2023 21:02:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/MakeAbsolute.php on line 5
[28-Nov-2023 21:02:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/Munge.php on line 3
[28-Nov-2023 21:02:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter_DisableExternal' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternalResources.php on line 3
[28-Nov-2023 21:02:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/SafeIframe.php on line 9
[28-Nov-2023 21:02:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/HostBlacklist.php on line 7
[28-Nov-2023 21:02:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternal.php on line 3
[28-Nov-2023 21:02:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableResources.php on line 3
[29-Nov-2023 07:31:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/HostBlacklist.php on line 7
[29-Nov-2023 07:31:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/SafeIframe.php on line 9
[29-Nov-2023 07:31:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter_DisableExternal' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternalResources.php on line 3
[29-Nov-2023 07:31:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternal.php on line 3
[29-Nov-2023 07:31:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableResources.php on line 3
[29-Nov-2023 07:31:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/Munge.php on line 3
[29-Nov-2023 07:31:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/MakeAbsolute.php on line 5
[01-Dec-2023 22:02:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternal.php on line 3
[01-Dec-2023 22:02:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter_DisableExternal' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternalResources.php on line 3
[01-Dec-2023 22:03:02 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/SafeIframe.php on line 9
[01-Dec-2023 22:03:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/HostBlacklist.php on line 7
[01-Dec-2023 22:03:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/Munge.php on line 3
[01-Dec-2023 22:03:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableResources.php on line 3
[01-Dec-2023 22:03:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/MakeAbsolute.php on line 5
[24-Feb-2024 15:05:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/MakeAbsolute.php on line 5
[24-Feb-2024 18:02:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/HostBlacklist.php on line 7
[26-Feb-2024 04:37:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter_DisableExternal' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternalResources.php on line 3
[26-Feb-2024 14:22:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableResources.php on line 3
[28-Feb-2024 12:40:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/Munge.php on line 3
[29-Feb-2024 12:54:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/SafeIframe.php on line 9
[02-Mar-2024 08:41:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternal.php on line 3
[15-Mar-2024 01:58:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/HostBlacklist.php on line 7
[29-Mar-2024 08:26:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter_DisableExternal' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternalResources.php on line 3
[01-Apr-2024 12:41:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/Munge.php on line 3
[04-Apr-2024 22:53:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableResources.php on line 3
[04-Apr-2024 22:56:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/MakeAbsolute.php on line 5
[04-Apr-2024 22:56:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/MakeAbsolute.php on line 5
[04-Apr-2024 23:07:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternal.php on line 3
[30-Apr-2024 13:09:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/SafeIframe.php on line 9
[03-May-2024 06:40:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/SafeIframe.php on line 9
[03-May-2024 06:52:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/MakeAbsolute.php on line 5
[03-May-2024 11:04:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableResources.php on line 3
[03-May-2024 15:36:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/Munge.php on line 3
[03-May-2024 15:46:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/HostBlacklist.php on line 7
[03-May-2024 19:23:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter_DisableExternal' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternalResources.php on line 3
[03-May-2024 20:34:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternal.php on line 3
[04-May-2024 12:06:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/MakeAbsolute.php on line 5
[05-May-2024 01:06:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/SafeIframe.php on line 9
[05-May-2024 01:06:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/Munge.php on line 3
[05-May-2024 01:06:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/MakeAbsolute.php on line 5
[05-May-2024 01:30:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter_DisableExternal' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternalResources.php on line 3
[05-May-2024 01:38:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/HostBlacklist.php on line 7
[05-May-2024 01:39:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableResources.php on line 3
[05-May-2024 01:41:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternal.php on line 3
[05-May-2024 11:02:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/SafeIframe.php on line 9
[05-May-2024 11:02:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/Munge.php on line 3
[05-May-2024 11:02:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/MakeAbsolute.php on line 5
[05-May-2024 11:25:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter_DisableExternal' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternalResources.php on line 3
[05-May-2024 11:34:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/HostBlacklist.php on line 7
[05-May-2024 11:34:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableResources.php on line 3
[05-May-2024 11:37:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternal.php on line 3
[05-May-2024 20:27:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/SafeIframe.php on line 9
[05-May-2024 20:27:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/Munge.php on line 3
[05-May-2024 20:27:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/MakeAbsolute.php on line 5
[05-May-2024 20:50:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter_DisableExternal' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternalResources.php on line 3
[05-May-2024 20:59:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/HostBlacklist.php on line 7
[05-May-2024 20:59:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableResources.php on line 3
[05-May-2024 21:02:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternal.php on line 3
[06-May-2024 07:27:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/HostBlacklist.php on line 7
[07-May-2024 04:35:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter_DisableExternal' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternalResources.php on line 3
[07-May-2024 18:09:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableResources.php on line 3
[09-May-2024 09:04:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/SafeIframe.php on line 9
[09-May-2024 13:52:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/Munge.php on line 3
[10-May-2024 09:12:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternal.php on line 3
[13-May-2024 11:57:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternal.php on line 3
[13-May-2024 12:04:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter_DisableExternal' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternalResources.php on line 3
[13-May-2024 12:50:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/Munge.php on line 3
[13-May-2024 12:58:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/MakeAbsolute.php on line 5
[14-May-2024 20:10:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/SafeIframe.php on line 9
[14-May-2024 20:10:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/Munge.php on line 3
[14-May-2024 20:10:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/MakeAbsolute.php on line 5
[14-May-2024 20:18:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter_DisableExternal' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternalResources.php on line 3
[14-May-2024 20:21:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/HostBlacklist.php on line 7
[14-May-2024 20:21:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableResources.php on line 3
[14-May-2024 20:22:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternal.php on line 3
[18-May-2024 22:27:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/Munge.php on line 3
[19-May-2024 12:39:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/MakeAbsolute.php on line 5
[10-Jun-2024 10:03:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/HostBlacklist.php on line 7
[11-Jun-2024 02:07:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter_DisableExternal' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternalResources.php on line 3
[11-Jun-2024 14:13:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/MakeAbsolute.php on line 5
[12-Jun-2024 09:26:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableResources.php on line 3
[14-Jun-2024 05:14:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/Munge.php on line 3
[14-Jun-2024 13:00:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableResources.php on line 3
[14-Jun-2024 13:03:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/MakeAbsolute.php on line 5
[14-Jun-2024 13:28:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternal.php on line 3
[15-Jun-2024 05:24:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter_DisableExternal' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternalResources.php on line 3
[15-Jun-2024 08:10:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/MakeAbsolute.php on line 5
[15-Jun-2024 08:16:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/SafeIframe.php on line 9
[15-Jun-2024 09:04:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/HostBlacklist.php on line 7
[16-Jun-2024 08:10:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternal.php on line 3
[17-Jun-2024 03:29:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/SafeIframe.php on line 9
[18-Jun-2024 00:31:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternal.php on line 3
[18-Jun-2024 01:54:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableResources.php on line 3
[18-Jun-2024 22:53:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/SafeIframe.php on line 9
[18-Jun-2024 22:54:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/Munge.php on line 3
[18-Jun-2024 22:54:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/MakeAbsolute.php on line 5
[18-Jun-2024 22:59:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter_DisableExternal' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternalResources.php on line 3
[18-Jun-2024 23:01:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/HostBlacklist.php on line 7
[18-Jun-2024 23:01:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableResources.php on line 3
[18-Jun-2024 23:02:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternal.php on line 3
[19-Jun-2024 07:51:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/SafeIframe.php on line 9
[19-Jun-2024 07:51:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/Munge.php on line 3
[19-Jun-2024 07:51:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/MakeAbsolute.php on line 5
[19-Jun-2024 07:57:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter_DisableExternal' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternalResources.php on line 3
[19-Jun-2024 07:59:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/HostBlacklist.php on line 7
[19-Jun-2024 07:59:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableResources.php on line 3
[19-Jun-2024 08:00:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternal.php on line 3
[19-Jun-2024 20:41:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/Munge.php on line 3
[19-Jun-2024 20:41:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/SafeIframe.php on line 9
[19-Jun-2024 20:41:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/MakeAbsolute.php on line 5
[19-Jun-2024 20:46:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter_DisableExternal' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternalResources.php on line 3
[19-Jun-2024 20:48:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/HostBlacklist.php on line 7
[19-Jun-2024 20:48:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableResources.php on line 3
[19-Jun-2024 20:49:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternal.php on line 3
[20-Jun-2024 13:35:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter_DisableExternal' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternalResources.php on line 3
[21-Jun-2024 16:46:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/Munge.php on line 3
[29-Jun-2024 23:17:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/SafeIframe.php on line 9
[06-Jul-2024 04:22:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/SafeIframe.php on line 9
[12-Jul-2024 02:06:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/SafeIframe.php on line 9
[14-Jul-2024 17:15:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/HostBlacklist.php on line 7
[18-Jul-2024 22:35:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/HostBlacklist.php on line 7
[18-Jul-2024 22:41:02 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternal.php on line 3
[19-Jul-2024 00:03:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/MakeAbsolute.php on line 5
[19-Jul-2024 00:08:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/SafeIframe.php on line 9
[19-Jul-2024 07:46:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/MakeAbsolute.php on line 5
[19-Jul-2024 08:32:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableResources.php on line 3
[19-Jul-2024 17:27:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter_DisableExternal' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternalResources.php on line 3
[19-Jul-2024 20:16:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternal.php on line 3
[20-Jul-2024 00:56:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/Munge.php on line 3
[20-Jul-2024 16:00:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter_DisableExternal' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternalResources.php on line 3
[21-Jul-2024 00:50:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternal.php on line 3
[21-Jul-2024 06:04:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/HostBlacklist.php on line 7
[21-Jul-2024 14:23:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternal.php on line 3
[21-Jul-2024 19:20:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/Munge.php on line 3
[22-Jul-2024 06:43:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternal.php on line 3
[22-Jul-2024 19:28:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/SafeIframe.php on line 9
[22-Jul-2024 19:28:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/Munge.php on line 3
[22-Jul-2024 19:28:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/MakeAbsolute.php on line 5
[22-Jul-2024 19:42:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter_DisableExternal' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternalResources.php on line 3
[22-Jul-2024 19:47:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/HostBlacklist.php on line 7
[22-Jul-2024 19:47:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableResources.php on line 3
[22-Jul-2024 19:49:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternal.php on line 3
[23-Jul-2024 14:19:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/HostBlacklist.php on line 7
[23-Jul-2024 14:20:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter_DisableExternal' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternalResources.php on line 3
[24-Jul-2024 08:12:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter_DisableExternal' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternalResources.php on line 3
[24-Jul-2024 08:56:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/MakeAbsolute.php on line 5
[24-Jul-2024 17:17:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternal.php on line 3
[24-Jul-2024 21:45:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter_DisableExternal' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternalResources.php on line 3
[25-Jul-2024 05:14:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableResources.php on line 3
[25-Jul-2024 15:24:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/SafeIframe.php on line 9
[25-Jul-2024 20:21:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableResources.php on line 3
[26-Jul-2024 18:58:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/HostBlacklist.php on line 7
[27-Jul-2024 05:53:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/SafeIframe.php on line 9
[28-Jul-2024 15:55:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/Munge.php on line 3
[29-Jul-2024 04:45:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter_DisableExternal' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternalResources.php on line 3
[29-Jul-2024 18:38:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/Munge.php on line 3
[29-Jul-2024 23:00:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter_DisableExternal' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternalResources.php on line 3
[30-Jul-2024 23:16:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableResources.php on line 3
[04-Aug-2024 22:46:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter_DisableExternal' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternalResources.php on line 3
[07-Aug-2024 02:35:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/SafeIframe.php on line 9
[07-Aug-2024 13:20:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter_DisableExternal' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternalResources.php on line 3
[09-Aug-2024 16:19:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/HostBlacklist.php on line 7
[11-Aug-2024 05:55:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter_DisableExternal' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternalResources.php on line 3
[13-Aug-2024 10:31:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/Munge.php on line 3
[20-Aug-2024 15:14:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/HostBlacklist.php on line 7
[23-Aug-2024 04:17:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/SafeIframe.php on line 9
[25-Aug-2024 03:26:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableResources.php on line 3
[25-Aug-2024 06:24:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/MakeAbsolute.php on line 5
[25-Aug-2024 18:16:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/MakeAbsolute.php on line 5
[25-Aug-2024 18:19:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/HostBlacklist.php on line 7
[25-Aug-2024 19:29:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/SafeIframe.php on line 9
[25-Aug-2024 22:17:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/Munge.php on line 3
[25-Aug-2024 23:33:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableResources.php on line 3
[26-Aug-2024 03:24:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter_DisableExternal' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternalResources.php on line 3
[26-Aug-2024 04:05:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter_DisableExternal' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternalResources.php on line 3
[26-Aug-2024 05:59:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternal.php on line 3
[27-Aug-2024 00:14:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/MakeAbsolute.php on line 5
[27-Aug-2024 02:57:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternal.php on line 3
[31-Aug-2024 06:51:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternal.php on line 3
[01-Sep-2024 03:38:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter_DisableExternal' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternalResources.php on line 3
[01-Sep-2024 04:30:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter_DisableExternal' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternalResources.php on line 3
[01-Sep-2024 16:43:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/SafeIframe.php on line 9
[01-Sep-2024 21:39:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableResources.php on line 3
[01-Sep-2024 23:17:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/SafeIframe.php on line 9
[01-Sep-2024 23:17:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/Munge.php on line 3
[01-Sep-2024 23:17:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/MakeAbsolute.php on line 5
[01-Sep-2024 23:41:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter_DisableExternal' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternalResources.php on line 3
[01-Sep-2024 23:49:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/HostBlacklist.php on line 7
[01-Sep-2024 23:49:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableResources.php on line 3
[01-Sep-2024 23:52:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternal.php on line 3
[02-Sep-2024 02:41:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/MakeAbsolute.php on line 5
[02-Sep-2024 11:30:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternal.php on line 3
[03-Sep-2024 14:14:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableResources.php on line 3
[04-Sep-2024 10:39:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/MakeAbsolute.php on line 5
[04-Sep-2024 14:18:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/Munge.php on line 3
[08-Sep-2024 03:43:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/MakeAbsolute.php on line 5
[08-Sep-2024 11:44:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternal.php on line 3
[10-Sep-2024 03:06:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableResources.php on line 3
[11-Sep-2024 22:57:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/SafeIframe.php on line 9
[11-Sep-2024 22:57:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/Munge.php on line 3
[11-Sep-2024 22:57:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/MakeAbsolute.php on line 5
[11-Sep-2024 23:10:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter_DisableExternal' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternalResources.php on line 3
[11-Sep-2024 23:15:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/HostBlacklist.php on line 7
[11-Sep-2024 23:15:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableResources.php on line 3
[11-Sep-2024 23:17:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternal.php on line 3
[13-Sep-2024 06:38:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/SafeIframe.php on line 9
[13-Sep-2024 06:38:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/Munge.php on line 3
[13-Sep-2024 06:38:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/MakeAbsolute.php on line 5
[13-Sep-2024 06:40:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/SafeIframe.php on line 9
[13-Sep-2024 06:40:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/Munge.php on line 3
[13-Sep-2024 06:40:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/MakeAbsolute.php on line 5
[13-Sep-2024 07:04:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter_DisableExternal' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternalResources.php on line 3
[13-Sep-2024 07:05:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter_DisableExternal' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternalResources.php on line 3
[13-Sep-2024 07:14:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/HostBlacklist.php on line 7
[13-Sep-2024 07:14:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableResources.php on line 3
[13-Sep-2024 07:15:02 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/HostBlacklist.php on line 7
[13-Sep-2024 07:15:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableResources.php on line 3
[13-Sep-2024 07:20:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternal.php on line 3
[13-Sep-2024 07:20:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternal.php on line 3
[25-Sep-2024 08:02:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter_DisableExternal' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternalResources.php on line 3
[26-Sep-2024 05:28:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/MakeAbsolute.php on line 5
[29-Sep-2024 04:54:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/MakeAbsolute.php on line 5
[02-Oct-2024 00:09:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter_DisableExternal' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternalResources.php on line 3
[02-Oct-2024 16:24:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/HostBlacklist.php on line 7
[04-Oct-2024 08:56:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/SafeIframe.php on line 9
[04-Oct-2024 09:45:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/MakeAbsolute.php on line 5
[04-Oct-2024 13:29:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/Munge.php on line 3
[04-Oct-2024 16:44:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/HostBlacklist.php on line 7
[05-Oct-2024 00:09:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternal.php on line 3
[08-Oct-2024 02:52:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableResources.php on line 3
[08-Oct-2024 06:41:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/MakeAbsolute.php on line 5
[08-Oct-2024 08:34:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter_DisableExternal' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternalResources.php on line 3
[09-Oct-2024 13:55:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternal.php on line 3
[09-Oct-2024 19:56:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/SafeIframe.php on line 9
[09-Oct-2024 20:15:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableResources.php on line 3
[09-Oct-2024 22:51:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/Munge.php on line 3
[10-Oct-2024 05:13:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/MakeAbsolute.php on line 5
[10-Oct-2024 08:48:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter_DisableExternal' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternalResources.php on line 3
[16-Oct-2024 17:16:02 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/MakeAbsolute.php on line 5
[31-Oct-2024 14:02:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/SafeIframe.php on line 9
[31-Oct-2024 14:02:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/Munge.php on line 3
[31-Oct-2024 14:02:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/MakeAbsolute.php on line 5
[31-Oct-2024 14:22:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter_DisableExternal' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternalResources.php on line 3
[31-Oct-2024 14:32:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/HostBlacklist.php on line 7
[31-Oct-2024 14:32:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableResources.php on line 3
[31-Oct-2024 14:37:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternal.php on line 3
[02-Nov-2024 10:16:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableResources.php on line 3
[06-Nov-2024 05:41:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/HostBlacklist.php on line 7
[10-Nov-2024 07:50:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/SafeIframe.php on line 9
[10-Nov-2024 07:50:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/Munge.php on line 3
[10-Nov-2024 07:50:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/MakeAbsolute.php on line 5
[10-Nov-2024 07:51:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter_DisableExternal' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternalResources.php on line 3
[10-Nov-2024 07:51:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/HostBlacklist.php on line 7
[10-Nov-2024 07:51:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableResources.php on line 3
[10-Nov-2024 07:51:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_URIFilter' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternal.php on line 3
htmlpurifier/library/HTMLPurifier/URIFilter/MakeAbsolute.php 0000644 00000011541 14716425662 0020105 0 ustar 00 getDefinition('URI');
$this->base = $def->base;
if (is_null($this->base)) {
trigger_error(
'URI.MakeAbsolute is being ignored due to lack of ' .
'value for URI.Base configuration',
E_USER_WARNING
);
return false;
}
$this->base->fragment = null; // fragment is invalid for base URI
$stack = explode('/', $this->base->path);
array_pop($stack); // discard last segment
$stack = $this->_collapseStack($stack); // do pre-parsing
$this->basePathStack = $stack;
return true;
}
/**
* @param HTMLPurifier_URI $uri
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return bool
*/
public function filter(&$uri, $config, $context)
{
if (is_null($this->base)) {
return true;
} // abort early
if ($uri->path === '' && is_null($uri->scheme) &&
is_null($uri->host) && is_null($uri->query) && is_null($uri->fragment)) {
// reference to current document
$uri = clone $this->base;
return true;
}
if (!is_null($uri->scheme)) {
// absolute URI already: don't change
if (!is_null($uri->host)) {
return true;
}
$scheme_obj = $uri->getSchemeObj($config, $context);
if (!$scheme_obj) {
// scheme not recognized
return false;
}
if (!$scheme_obj->hierarchical) {
// non-hierarchal URI with explicit scheme, don't change
return true;
}
// special case: had a scheme but always is hierarchical and had no authority
}
if (!is_null($uri->host)) {
// network path, don't bother
return true;
}
if ($uri->path === '') {
$uri->path = $this->base->path;
} elseif ($uri->path[0] !== '/') {
// relative path, needs more complicated processing
$stack = explode('/', $uri->path);
$new_stack = array_merge($this->basePathStack, $stack);
if ($new_stack[0] !== '' && !is_null($this->base->host)) {
array_unshift($new_stack, '');
}
$new_stack = $this->_collapseStack($new_stack);
$uri->path = implode('/', $new_stack);
} else {
// absolute path, but still we should collapse
$uri->path = implode('/', $this->_collapseStack(explode('/', $uri->path)));
}
// re-combine
$uri->scheme = $this->base->scheme;
if (is_null($uri->userinfo)) {
$uri->userinfo = $this->base->userinfo;
}
if (is_null($uri->host)) {
$uri->host = $this->base->host;
}
if (is_null($uri->port)) {
$uri->port = $this->base->port;
}
return true;
}
/**
* Resolve dots and double-dots in a path stack
* @param array $stack
* @return array
*/
private function _collapseStack($stack)
{
$result = array();
$is_folder = false;
for ($i = 0; isset($stack[$i]); $i++) {
$is_folder = false;
// absorb an internally duplicated slash
if ($stack[$i] == '' && $i && isset($stack[$i + 1])) {
continue;
}
if ($stack[$i] == '..') {
if (!empty($result)) {
$segment = array_pop($result);
if ($segment === '' && empty($result)) {
// error case: attempted to back out too far:
// restore the leading slash
$result[] = '';
} elseif ($segment === '..') {
$result[] = '..'; // cannot remove .. with ..
}
} else {
// relative path, preserve the double-dots
$result[] = '..';
}
$is_folder = true;
continue;
}
if ($stack[$i] == '.') {
// silently absorb
$is_folder = true;
continue;
}
$result[] = $stack[$i];
}
if ($is_folder) {
$result[] = '';
}
return $result;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/URIFilter/Munge.php 0000644 00000006103 14716425662 0016602 0 ustar 00 target = $config->get('URI.' . $this->name);
$this->parser = new HTMLPurifier_URIParser();
$this->doEmbed = $config->get('URI.MungeResources');
$this->secretKey = $config->get('URI.MungeSecretKey');
if ($this->secretKey && !function_exists('hash_hmac')) {
throw new Exception("Cannot use %URI.MungeSecretKey without hash_hmac support.");
}
return true;
}
/**
* @param HTMLPurifier_URI $uri
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return bool
*/
public function filter(&$uri, $config, $context)
{
if ($context->get('EmbeddedURI', true) && !$this->doEmbed) {
return true;
}
$scheme_obj = $uri->getSchemeObj($config, $context);
if (!$scheme_obj) {
return true;
} // ignore unknown schemes, maybe another postfilter did it
if (!$scheme_obj->browsable) {
return true;
} // ignore non-browseable schemes, since we can't munge those in a reasonable way
if ($uri->isBenign($config, $context)) {
return true;
} // don't redirect if a benign URL
$this->makeReplace($uri, $config, $context);
$this->replace = array_map('rawurlencode', $this->replace);
$new_uri = strtr($this->target, $this->replace);
$new_uri = $this->parser->parse($new_uri);
// don't redirect if the target host is the same as the
// starting host
if ($uri->host === $new_uri->host) {
return true;
}
$uri = $new_uri; // overwrite
return true;
}
/**
* @param HTMLPurifier_URI $uri
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
*/
protected function makeReplace($uri, $config, $context)
{
$string = $uri->toString();
// always available
$this->replace['%s'] = $string;
$this->replace['%r'] = $context->get('EmbeddedURI', true);
$token = $context->get('CurrentToken', true);
$this->replace['%n'] = $token ? $token->name : null;
$this->replace['%m'] = $context->get('CurrentAttr', true);
$this->replace['%p'] = $context->get('CurrentCSSProperty', true);
// not always available
if ($this->secretKey) {
$this->replace['%t'] = hash_hmac("sha256", $string, $this->secretKey);
}
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/URIFilter/SafeIframe.php 0000644 00000003262 14716425662 0017534 0 ustar 00 regexp = $config->get('URI.SafeIframeRegexp');
return true;
}
/**
* @param HTMLPurifier_URI $uri
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return bool
*/
public function filter(&$uri, $config, $context)
{
// check if filter not applicable
if (!$config->get('HTML.SafeIframe')) {
return true;
}
// check if the filter should actually trigger
if (!$context->get('EmbeddedURI', true)) {
return true;
}
$token = $context->get('CurrentToken', true);
if (!($token && $token->name == 'iframe')) {
return true;
}
// check if we actually have some whitelists enabled
if ($this->regexp === null) {
return false;
}
// actually check the whitelists
return preg_match($this->regexp, $uri->toString());
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/URIFilter/HostBlacklist.php 0000644 00000002200 14716425662 0020267 0 ustar 00 blacklist = $config->get('URI.HostBlacklist');
return true;
}
/**
* @param HTMLPurifier_URI $uri
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return bool
*/
public function filter(&$uri, $config, $context)
{
foreach ($this->blacklist as $blacklisted_host_fragment) {
if (strpos($uri->host, $blacklisted_host_fragment) !== false) {
return false;
}
}
return true;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/URIFilter/DisableExternal.php 0000644 00000002404 14716425662 0020575 0 ustar 00 getDefinition('URI')->host;
if ($our_host !== null) {
$this->ourHostParts = array_reverse(explode('.', $our_host));
}
}
/**
* @param HTMLPurifier_URI $uri Reference
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return bool
*/
public function filter(&$uri, $config, $context)
{
if (is_null($uri->host)) {
return true;
}
if ($this->ourHostParts === false) {
return false;
}
$host_parts = array_reverse(explode('.', $uri->host));
foreach ($this->ourHostParts as $i => $x) {
if (!isset($host_parts[$i])) {
return false;
}
if ($host_parts[$i] != $this->ourHostParts[$i]) {
return false;
}
}
return true;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/URIFilter/DisableResources.php 0000644 00000000716 14716425662 0020771 0 ustar 00 get('EmbeddedURI', true);
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/error_log; 0000644 00000072162 14716425662 0015231 0 ustar 00 [24-Sep-2023 11:12:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLDefinition.php on line 26
[01-Oct-2023 14:58:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/CSSDefinition.php on line 7
[01-Oct-2023 14:58:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLDefinition.php on line 26
[01-Oct-2023 14:58:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIDefinition.php on line 3
[01-Oct-2023 14:58:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParserException.php on line 6
[01-Oct-2023 17:46:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/CSSDefinition.php on line 7
[01-Oct-2023 17:46:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLDefinition.php on line 26
[01-Oct-2023 17:46:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIDefinition.php on line 3
[01-Oct-2023 17:46:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParserException.php on line 6
[14-Oct-2023 23:25:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/CSSDefinition.php on line 7
[24-Nov-2023 13:49:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/CSSDefinition.php on line 7
[24-Nov-2023 13:50:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLDefinition.php on line 26
[24-Nov-2023 13:50:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParserException.php on line 6
[24-Nov-2023 13:50:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIDefinition.php on line 3
[24-Nov-2023 20:38:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/CSSDefinition.php on line 7
[24-Nov-2023 20:39:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLDefinition.php on line 26
[24-Nov-2023 20:39:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIDefinition.php on line 3
[24-Nov-2023 20:40:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParserException.php on line 6
[25-Nov-2023 16:34:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/CSSDefinition.php on line 7
[25-Nov-2023 16:35:02 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLDefinition.php on line 26
[25-Nov-2023 16:35:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParserException.php on line 6
[25-Nov-2023 16:35:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIDefinition.php on line 3
[27-Nov-2023 18:04:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/CSSDefinition.php on line 7
[27-Nov-2023 18:05:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLDefinition.php on line 26
[27-Nov-2023 18:05:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIDefinition.php on line 3
[27-Nov-2023 18:05:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParserException.php on line 6
[30-Nov-2023 13:29:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLDefinition.php on line 26
[07-Dec-2023 21:21:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLDefinition.php on line 26
[08-Jan-2024 07:42:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/CSSDefinition.php on line 7
[25-Jan-2024 17:45:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLDefinition.php on line 26
[12-Mar-2024 18:28:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLDefinition.php on line 26
[12-Mar-2024 19:34:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/CSSDefinition.php on line 7
[12-Mar-2024 21:13:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParserException.php on line 6
[13-Mar-2024 06:57:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIDefinition.php on line 3
[13-Mar-2024 08:50:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/CSSDefinition.php on line 7
[21-Mar-2024 18:27:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParserException.php on line 6
[17-Apr-2024 04:37:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLDefinition.php on line 26
[02-May-2024 12:38:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/CSSDefinition.php on line 7
[04-May-2024 23:50:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLDefinition.php on line 26
[04-May-2024 23:51:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/CSSDefinition.php on line 7
[05-May-2024 00:02:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParserException.php on line 6
[05-May-2024 09:45:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIDefinition.php on line 3
[05-May-2024 09:46:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLDefinition.php on line 26
[05-May-2024 09:47:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/CSSDefinition.php on line 7
[05-May-2024 09:57:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParserException.php on line 6
[05-May-2024 19:43:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIDefinition.php on line 3
[05-May-2024 19:44:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLDefinition.php on line 26
[05-May-2024 19:44:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/CSSDefinition.php on line 7
[05-May-2024 19:55:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParserException.php on line 6
[13-May-2024 11:31:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLDefinition.php on line 26
[13-May-2024 12:52:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/CSSDefinition.php on line 7
[13-May-2024 13:27:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParserException.php on line 6
[14-May-2024 19:18:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIDefinition.php on line 3
[14-May-2024 19:19:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLDefinition.php on line 26
[14-May-2024 19:20:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/CSSDefinition.php on line 7
[14-May-2024 19:22:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParserException.php on line 6
[19-May-2024 05:24:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLDefinition.php on line 26
[19-May-2024 07:05:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/CSSDefinition.php on line 7
[13-Jun-2024 02:11:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParserException.php on line 6
[14-Jun-2024 11:23:51 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLDefinition.php on line 26
[14-Jun-2024 11:52:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/CSSDefinition.php on line 7
[14-Jun-2024 13:36:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParserException.php on line 6
[18-Jun-2024 22:49:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIDefinition.php on line 3
[18-Jun-2024 22:50:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLDefinition.php on line 26
[18-Jun-2024 22:51:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/CSSDefinition.php on line 7
[18-Jun-2024 22:51:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParserException.php on line 6
[19-Jun-2024 07:47:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIDefinition.php on line 3
[19-Jun-2024 07:48:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLDefinition.php on line 26
[19-Jun-2024 07:49:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/CSSDefinition.php on line 7
[19-Jun-2024 07:49:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParserException.php on line 6
[19-Jun-2024 20:36:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIDefinition.php on line 3
[19-Jun-2024 20:37:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLDefinition.php on line 26
[19-Jun-2024 20:38:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/CSSDefinition.php on line 7
[19-Jun-2024 20:38:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParserException.php on line 6
[28-Jun-2024 03:53:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParserException.php on line 6
[29-Jun-2024 22:49:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLDefinition.php on line 26
[30-Jun-2024 02:56:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/CSSDefinition.php on line 7
[01-Jul-2024 16:06:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIDefinition.php on line 3
[05-Jul-2024 02:49:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParserException.php on line 6
[06-Jul-2024 03:46:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLDefinition.php on line 26
[06-Jul-2024 09:22:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/CSSDefinition.php on line 7
[09-Jul-2024 02:39:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIDefinition.php on line 3
[12-Jul-2024 04:45:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/CSSDefinition.php on line 7
[15-Jul-2024 23:03:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParserException.php on line 6
[16-Jul-2024 16:41:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParserException.php on line 6
[16-Jul-2024 22:21:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParserException.php on line 6
[17-Jul-2024 03:50:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParserException.php on line 6
[17-Jul-2024 12:56:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParserException.php on line 6
[19-Jul-2024 13:53:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIDefinition.php on line 3
[22-Jul-2024 01:55:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParserException.php on line 6
[22-Jul-2024 18:19:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIDefinition.php on line 3
[22-Jul-2024 18:20:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLDefinition.php on line 26
[22-Jul-2024 18:20:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/CSSDefinition.php on line 7
[22-Jul-2024 18:31:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParserException.php on line 6
[23-Jul-2024 04:37:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIDefinition.php on line 3
[25-Jul-2024 23:33:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLDefinition.php on line 26
[29-Jul-2024 00:33:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIDefinition.php on line 3
[04-Aug-2024 11:16:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/CSSDefinition.php on line 7
[14-Aug-2024 21:43:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParserException.php on line 6
[21-Aug-2024 21:39:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLDefinition.php on line 26
[26-Aug-2024 05:19:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLDefinition.php on line 26
[28-Aug-2024 06:54:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLDefinition.php on line 26
[01-Sep-2024 22:00:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIDefinition.php on line 3
[01-Sep-2024 22:01:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLDefinition.php on line 26
[01-Sep-2024 22:02:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/CSSDefinition.php on line 7
[01-Sep-2024 22:12:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParserException.php on line 6
[07-Sep-2024 07:20:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLDefinition.php on line 26
[10-Sep-2024 02:46:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIDefinition.php on line 3
[10-Sep-2024 02:47:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLDefinition.php on line 26
[10-Sep-2024 02:48:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/CSSDefinition.php on line 7
[10-Sep-2024 02:48:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIDefinition.php on line 3
[10-Sep-2024 02:49:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLDefinition.php on line 26
[10-Sep-2024 02:49:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/CSSDefinition.php on line 7
[11-Sep-2024 21:51:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIDefinition.php on line 3
[11-Sep-2024 21:51:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLDefinition.php on line 26
[11-Sep-2024 21:52:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/CSSDefinition.php on line 7
[11-Sep-2024 22:01:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParserException.php on line 6
[13-Sep-2024 06:29:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParserException.php on line 6
[13-Sep-2024 06:29:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParserException.php on line 6
[23-Sep-2024 22:07:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIDefinition.php on line 3
[03-Oct-2024 07:25:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/CSSDefinition.php on line 7
[10-Oct-2024 01:35:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParserException.php on line 6
[18-Oct-2024 14:20:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIDefinition.php on line 3
[18-Oct-2024 14:28:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLDefinition.php on line 26
[18-Oct-2024 14:28:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParserException.php on line 6
[21-Oct-2024 01:13:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/CSSDefinition.php on line 7
[23-Oct-2024 16:38:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIDefinition.php on line 3
[30-Oct-2024 20:42:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/CSSDefinition.php on line 7
[31-Oct-2024 12:41:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIDefinition.php on line 3
[31-Oct-2024 12:42:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLDefinition.php on line 26
[31-Oct-2024 12:43:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/CSSDefinition.php on line 7
[31-Oct-2024 12:49:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParserException.php on line 6
[02-Nov-2024 00:16:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIDefinition.php on line 3
[09-Nov-2024 22:41:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIDefinition.php on line 3
[09-Nov-2024 22:42:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLDefinition.php on line 26
[09-Nov-2024 22:43:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Definition' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/CSSDefinition.php on line 7
[09-Nov-2024 22:43:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParserException.php on line 6
htmlpurifier/library/HTMLPurifier/DoctypeRegistry.php 0000644 00000010200 14716425662 0017053 0 ustar 00 doctypes[$doctype->name] = $doctype;
$name = $doctype->name;
// hookup aliases
foreach ($doctype->aliases as $alias) {
if (isset($this->doctypes[$alias])) {
continue;
}
$this->aliases[$alias] = $name;
}
// remove old aliases
if (isset($this->aliases[$name])) {
unset($this->aliases[$name]);
}
return $doctype;
}
/**
* Retrieves reference to a doctype of a certain name
* @note This function resolves aliases
* @note When possible, use the more fully-featured make()
* @param string $doctype Name of doctype
* @return HTMLPurifier_Doctype Editable doctype object
*/
public function get($doctype)
{
if (isset($this->aliases[$doctype])) {
$doctype = $this->aliases[$doctype];
}
if (!isset($this->doctypes[$doctype])) {
trigger_error('Doctype ' . htmlspecialchars($doctype) . ' does not exist', E_USER_ERROR);
$anon = new HTMLPurifier_Doctype($doctype);
return $anon;
}
return $this->doctypes[$doctype];
}
/**
* Creates a doctype based on a configuration object,
* will perform initialization on the doctype
* @note Use this function to get a copy of doctype that config
* can hold on to (this is necessary in order to tell
* Generator whether or not the current document is XML
* based or not).
* @param HTMLPurifier_Config $config
* @return HTMLPurifier_Doctype
*/
public function make($config)
{
return clone $this->get($this->getDoctypeFromConfig($config));
}
/**
* Retrieves the doctype from the configuration object
* @param HTMLPurifier_Config $config
* @return string
*/
public function getDoctypeFromConfig($config)
{
// recommended test
$doctype = $config->get('HTML.Doctype');
if (!empty($doctype)) {
return $doctype;
}
$doctype = $config->get('HTML.CustomDoctype');
if (!empty($doctype)) {
return $doctype;
}
// backwards-compatibility
if ($config->get('HTML.XHTML')) {
$doctype = 'XHTML 1.0';
} else {
$doctype = 'HTML 4.01';
}
if ($config->get('HTML.Strict')) {
$doctype .= ' Strict';
} else {
$doctype .= ' Transitional';
}
return $doctype;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/Arborize.php 0000644 00000004766 14716425662 0015514 0 ustar 00 getHTMLDefinition();
$parent = new HTMLPurifier_Token_Start($definition->info_parent);
$stack = array($parent->toNode());
foreach ($tokens as $token) {
$token->skip = null; // [MUT]
$token->carryover = null; // [MUT]
if ($token instanceof HTMLPurifier_Token_End) {
$token->start = null; // [MUT]
$r = array_pop($stack);
//assert($r->name === $token->name);
//assert(empty($token->attr));
$r->endCol = $token->col;
$r->endLine = $token->line;
$r->endArmor = $token->armor;
continue;
}
$node = $token->toNode();
$stack[count($stack)-1]->children[] = $node;
if ($token instanceof HTMLPurifier_Token_Start) {
$stack[] = $node;
}
}
//assert(count($stack) == 1);
return $stack[0];
}
public static function flatten($node, $config, $context) {
$level = 0;
$nodes = array($level => new HTMLPurifier_Queue(array($node)));
$closingTokens = array();
$tokens = array();
do {
while (!$nodes[$level]->isEmpty()) {
$node = $nodes[$level]->shift(); // FIFO
list($start, $end) = $node->toTokenPair();
if ($level > 0) {
$tokens[] = $start;
}
if ($end !== NULL) {
$closingTokens[$level][] = $end;
}
if ($node instanceof HTMLPurifier_Node_Element) {
$level++;
$nodes[$level] = new HTMLPurifier_Queue();
foreach ($node->children as $childNode) {
$nodes[$level]->push($childNode);
}
}
}
$level--;
if ($level && isset($closingTokens[$level])) {
while ($token = array_pop($closingTokens[$level])) {
$tokens[] = $token;
}
}
} while ($level > 0);
return $tokens;
}
}
htmlpurifier/library/HTMLPurifier/Length.php 0000644 00000007264 14716425662 0015154 0 ustar 00 true, 'ex' => true, 'px' => true, 'in' => true,
'cm' => true, 'mm' => true, 'pt' => true, 'pc' => true
);
/**
* @param string $n Magnitude
* @param bool|string $u Unit
*/
public function __construct($n = '0', $u = false)
{
$this->n = (string) $n;
$this->unit = $u !== false ? (string) $u : false;
}
/**
* @param string $s Unit string, like '2em' or '3.4in'
* @return HTMLPurifier_Length
* @warning Does not perform validation.
*/
public static function make($s)
{
if ($s instanceof HTMLPurifier_Length) {
return $s;
}
$n_length = strspn($s, '1234567890.+-');
$n = substr($s, 0, $n_length);
$unit = substr($s, $n_length);
if ($unit === '') {
$unit = false;
}
return new HTMLPurifier_Length($n, $unit);
}
/**
* Validates the number and unit.
* @return bool
*/
protected function validate()
{
// Special case:
if ($this->n === '+0' || $this->n === '-0') {
$this->n = '0';
}
if ($this->n === '0' && $this->unit === false) {
return true;
}
if (!ctype_lower($this->unit)) {
$this->unit = strtolower($this->unit);
}
if (!isset(HTMLPurifier_Length::$allowedUnits[$this->unit])) {
return false;
}
// Hack:
$def = new HTMLPurifier_AttrDef_CSS_Number();
$result = $def->validate($this->n, false, false);
if ($result === false) {
return false;
}
$this->n = $result;
return true;
}
/**
* Returns string representation of number.
* @return string
*/
public function toString()
{
if (!$this->isValid()) {
return false;
}
return $this->n . $this->unit;
}
/**
* Retrieves string numeric magnitude.
* @return string
*/
public function getN()
{
return $this->n;
}
/**
* Retrieves string unit.
* @return string
*/
public function getUnit()
{
return $this->unit;
}
/**
* Returns true if this length unit is valid.
* @return bool
*/
public function isValid()
{
if ($this->isValid === null) {
$this->isValid = $this->validate();
}
return $this->isValid;
}
/**
* Compares two lengths, and returns 1 if greater, -1 if less and 0 if equal.
* @param HTMLPurifier_Length $l
* @return int
* @warning If both values are too large or small, this calculation will
* not work properly
*/
public function compareTo($l)
{
if ($l === false) {
return false;
}
if ($l->unit !== $this->unit) {
$converter = new HTMLPurifier_UnitConverter();
$l = $converter->convert($l, $this->unit);
if ($l === false) {
return false;
}
}
return $this->n - $l->n;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/Strategy.php 0000644 00000001372 14716425662 0015527 0 ustar 00 percentEncoder = new HTMLPurifier_PercentEncoder();
}
/**
* Parses a URI.
* @param $uri string URI to parse
* @return HTMLPurifier_URI representation of URI. This representation has
* not been validated yet and may not conform to RFC.
*/
public function parse($uri)
{
$uri = $this->percentEncoder->normalize($uri);
// Regexp is as per Appendix B.
// Note that ["<>] are an addition to the RFC's recommended
// characters, because they represent external delimeters.
$r_URI = '!'.
'(([a-zA-Z0-9\.\+\-]+):)?'. // 2. Scheme
'(//([^/?#"<>]*))?'. // 4. Authority
'([^?#"<>]*)'. // 5. Path
'(\?([^#"<>]*))?'. // 7. Query
'(#([^"<>]*))?'. // 8. Fragment
'!';
$matches = array();
$result = preg_match($r_URI, $uri, $matches);
if (!$result) return false; // *really* invalid URI
// seperate out parts
$scheme = !empty($matches[1]) ? $matches[2] : null;
$authority = !empty($matches[3]) ? $matches[4] : null;
$path = $matches[5]; // always present, can be empty
$query = !empty($matches[6]) ? $matches[7] : null;
$fragment = !empty($matches[8]) ? $matches[9] : null;
// further parse authority
if ($authority !== null) {
$r_authority = "/^((.+?)@)?(\[[^\]]+\]|[^:]*)(:(\d*))?/";
$matches = array();
preg_match($r_authority, $authority, $matches);
$userinfo = !empty($matches[1]) ? $matches[2] : null;
$host = !empty($matches[3]) ? $matches[3] : '';
$port = !empty($matches[4]) ? (int) $matches[5] : null;
} else {
$port = $host = $userinfo = null;
}
return new HTMLPurifier_URI(
$scheme, $userinfo, $host, $port, $path, $query, $fragment);
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/Lexer/DOMLex.php 0000644 00000025274 14716425662 0016103 0 ustar 00 factory = new HTMLPurifier_TokenFactory();
}
/**
* @param string $html
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return HTMLPurifier_Token[]
*/
public function tokenizeHTML($html, $config, $context)
{
$html = $this->normalize($html, $config, $context);
// attempt to armor stray angled brackets that cannot possibly
// form tags and thus are probably being used as emoticons
if ($config->get('Core.AggressivelyFixLt')) {
$char = '[^a-z!\/]';
$comment = "/|\z)/is";
$html = preg_replace_callback($comment, array($this, 'callbackArmorCommentEntities'), $html);
do {
$old = $html;
$html = preg_replace("/<($char)/i", '<\\1', $html);
} while ($html !== $old);
$html = preg_replace_callback($comment, array($this, 'callbackUndoCommentSubst'), $html); // fix comments
}
// preprocess html, essential for UTF-8
$html = $this->wrapHTML($html, $config, $context);
$doc = new DOMDocument();
$doc->encoding = 'UTF-8'; // theoretically, the above has this covered
set_error_handler(array($this, 'muteErrorHandler'));
$doc->loadHTML($html);
restore_error_handler();
$body = $doc->getElementsByTagName('html')->item(0)-> //
getElementsByTagName('body')->item(0); //
$div = $body->getElementsByTagName('div')->item(0); //
$tokens = array();
$this->tokenizeDOM($div, $tokens, $config);
// If the div has a sibling, that means we tripped across
// a premature
tag. So remove the div we parsed,
// and then tokenize the rest of body. We can't tokenize
// the sibling directly as we'll lose the tags in that case.
if ($div->nextSibling) {
$body->removeChild($div);
$this->tokenizeDOM($body, $tokens, $config);
}
return $tokens;
}
/**
* Iterative function that tokenizes a node, putting it into an accumulator.
* To iterate is human, to recurse divine - L. Peter Deutsch
* @param DOMNode $node DOMNode to be tokenized.
* @param HTMLPurifier_Token[] $tokens Array-list of already tokenized tokens.
* @return HTMLPurifier_Token of node appended to previously passed tokens.
*/
protected function tokenizeDOM($node, &$tokens, $config)
{
$level = 0;
$nodes = array($level => new HTMLPurifier_Queue(array($node)));
$closingNodes = array();
do {
while (!$nodes[$level]->isEmpty()) {
$node = $nodes[$level]->shift(); // FIFO
$collect = $level > 0 ? true : false;
$needEndingTag = $this->createStartNode($node, $tokens, $collect, $config);
if ($needEndingTag) {
$closingNodes[$level][] = $node;
}
if ($node->childNodes && $node->childNodes->length) {
$level++;
$nodes[$level] = new HTMLPurifier_Queue();
foreach ($node->childNodes as $childNode) {
$nodes[$level]->push($childNode);
}
}
}
$level--;
if ($level && isset($closingNodes[$level])) {
while ($node = array_pop($closingNodes[$level])) {
$this->createEndNode($node, $tokens);
}
}
} while ($level > 0);
}
/**
* @param DOMNode $node DOMNode to be tokenized.
* @param HTMLPurifier_Token[] $tokens Array-list of already tokenized tokens.
* @param bool $collect Says whether or start and close are collected, set to
* false at first recursion because it's the implicit DIV
* tag you're dealing with.
* @return bool if the token needs an endtoken
* @todo data and tagName properties don't seem to exist in DOMNode?
*/
protected function createStartNode($node, &$tokens, $collect, $config)
{
// intercept non element nodes. WE MUST catch all of them,
// but we're not getting the character reference nodes because
// those should have been preprocessed
if ($node->nodeType === XML_TEXT_NODE) {
$tokens[] = $this->factory->createText($node->data);
return false;
} elseif ($node->nodeType === XML_CDATA_SECTION_NODE) {
// undo libxml's special treatment of )#si',
array($this, 'scriptCallback'),
$html
);
}
$html = $this->normalize($html, $config, $context);
$cursor = 0; // our location in the text
$inside_tag = false; // whether or not we're parsing the inside of a tag
$array = array(); // result array
// This is also treated to mean maintain *column* numbers too
$maintain_line_numbers = $config->get('Core.MaintainLineNumbers');
if ($maintain_line_numbers === null) {
// automatically determine line numbering by checking
// if error collection is on
$maintain_line_numbers = $config->get('Core.CollectErrors');
}
if ($maintain_line_numbers) {
$current_line = 1;
$current_col = 0;
$length = strlen($html);
} else {
$current_line = false;
$current_col = false;
$length = false;
}
$context->register('CurrentLine', $current_line);
$context->register('CurrentCol', $current_col);
$nl = "\n";
// how often to manually recalculate. This will ALWAYS be right,
// but it's pretty wasteful. Set to 0 to turn off
$synchronize_interval = $config->get('Core.DirectLexLineNumberSyncInterval');
$e = false;
if ($config->get('Core.CollectErrors')) {
$e =& $context->get('ErrorCollector');
}
// for testing synchronization
$loops = 0;
while (++$loops) {
// $cursor is either at the start of a token, or inside of
// a tag (i.e. there was a < immediately before it), as indicated
// by $inside_tag
if ($maintain_line_numbers) {
// $rcursor, however, is always at the start of a token.
$rcursor = $cursor - (int)$inside_tag;
// Column number is cheap, so we calculate it every round.
// We're interested at the *end* of the newline string, so
// we need to add strlen($nl) == 1 to $nl_pos before subtracting it
// from our "rcursor" position.
$nl_pos = strrpos($html, $nl, $rcursor - $length);
$current_col = $rcursor - (is_bool($nl_pos) ? 0 : $nl_pos + 1);
// recalculate lines
if ($synchronize_interval && // synchronization is on
$cursor > 0 && // cursor is further than zero
$loops % $synchronize_interval === 0) { // time to synchronize!
$current_line = 1 + $this->substrCount($html, $nl, 0, $cursor);
}
}
$position_next_lt = strpos($html, '<', $cursor);
$position_next_gt = strpos($html, '>', $cursor);
// triggers on "asdf" but not "asdf "
// special case to set up context
if ($position_next_lt === $cursor) {
$inside_tag = true;
$cursor++;
}
if (!$inside_tag && $position_next_lt !== false) {
// We are not inside tag and there still is another tag to parse
$token = new
HTMLPurifier_Token_Text(
$this->parseText(
substr(
$html,
$cursor,
$position_next_lt - $cursor
), $config
)
);
if ($maintain_line_numbers) {
$token->rawPosition($current_line, $current_col);
$current_line += $this->substrCount($html, $nl, $cursor, $position_next_lt - $cursor);
}
$array[] = $token;
$cursor = $position_next_lt + 1;
$inside_tag = true;
continue;
} elseif (!$inside_tag) {
// We are not inside tag but there are no more tags
// If we're already at the end, break
if ($cursor === strlen($html)) {
break;
}
// Create Text of rest of string
$token = new
HTMLPurifier_Token_Text(
$this->parseText(
substr(
$html,
$cursor
), $config
)
);
if ($maintain_line_numbers) {
$token->rawPosition($current_line, $current_col);
}
$array[] = $token;
break;
} elseif ($inside_tag && $position_next_gt !== false) {
// We are in tag and it is well formed
// Grab the internals of the tag
$strlen_segment = $position_next_gt - $cursor;
if ($strlen_segment < 1) {
// there's nothing to process!
$token = new HTMLPurifier_Token_Text('<');
$cursor++;
continue;
}
$segment = substr($html, $cursor, $strlen_segment);
if ($segment === false) {
// somehow, we attempted to access beyond the end of
// the string, defense-in-depth, reported by Nate Abele
break;
}
// Check if it's a comment
if (substr($segment, 0, 3) === '!--') {
// re-determine segment length, looking for -->
$position_comment_end = strpos($html, '-->', $cursor);
if ($position_comment_end === false) {
// uh oh, we have a comment that extends to
// infinity. Can't be helped: set comment
// end position to end of string
if ($e) {
$e->send(E_WARNING, 'Lexer: Unclosed comment');
}
$position_comment_end = strlen($html);
$end = true;
} else {
$end = false;
}
$strlen_segment = $position_comment_end - $cursor;
$segment = substr($html, $cursor, $strlen_segment);
$token = new
HTMLPurifier_Token_Comment(
substr(
$segment,
3,
$strlen_segment - 3
)
);
if ($maintain_line_numbers) {
$token->rawPosition($current_line, $current_col);
$current_line += $this->substrCount($html, $nl, $cursor, $strlen_segment);
}
$array[] = $token;
$cursor = $end ? $position_comment_end : $position_comment_end + 3;
$inside_tag = false;
continue;
}
// Check if it's an end tag
$is_end_tag = (strpos($segment, '/') === 0);
if ($is_end_tag) {
$type = substr($segment, 1);
$token = new HTMLPurifier_Token_End($type);
if ($maintain_line_numbers) {
$token->rawPosition($current_line, $current_col);
$current_line += $this->substrCount($html, $nl, $cursor, $position_next_gt - $cursor);
}
$array[] = $token;
$inside_tag = false;
$cursor = $position_next_gt + 1;
continue;
}
// Check leading character is alnum, if not, we may
// have accidently grabbed an emoticon. Translate into
// text and go our merry way
if (!ctype_alpha($segment[0])) {
// XML: $segment[0] !== '_' && $segment[0] !== ':'
if ($e) {
$e->send(E_NOTICE, 'Lexer: Unescaped lt');
}
$token = new HTMLPurifier_Token_Text('<');
if ($maintain_line_numbers) {
$token->rawPosition($current_line, $current_col);
$current_line += $this->substrCount($html, $nl, $cursor, $position_next_gt - $cursor);
}
$array[] = $token;
$inside_tag = false;
continue;
}
// Check if it is explicitly self closing, if so, remove
// trailing slash. Remember, we could have a tag like
, so
// any later token processing scripts must convert improperly
// classified EmptyTags from StartTags.
$is_self_closing = (strrpos($segment, '/') === $strlen_segment - 1);
if ($is_self_closing) {
$strlen_segment--;
$segment = substr($segment, 0, $strlen_segment);
}
// Check if there are any attributes
$position_first_space = strcspn($segment, $this->_whitespace);
if ($position_first_space >= $strlen_segment) {
if ($is_self_closing) {
$token = new HTMLPurifier_Token_Empty($segment);
} else {
$token = new HTMLPurifier_Token_Start($segment);
}
if ($maintain_line_numbers) {
$token->rawPosition($current_line, $current_col);
$current_line += $this->substrCount($html, $nl, $cursor, $position_next_gt - $cursor);
}
$array[] = $token;
$inside_tag = false;
$cursor = $position_next_gt + 1;
continue;
}
// Grab out all the data
$type = substr($segment, 0, $position_first_space);
$attribute_string =
trim(
substr(
$segment,
$position_first_space
)
);
if ($attribute_string) {
$attr = $this->parseAttributeString(
$attribute_string,
$config,
$context
);
} else {
$attr = array();
}
if ($is_self_closing) {
$token = new HTMLPurifier_Token_Empty($type, $attr);
} else {
$token = new HTMLPurifier_Token_Start($type, $attr);
}
if ($maintain_line_numbers) {
$token->rawPosition($current_line, $current_col);
$current_line += $this->substrCount($html, $nl, $cursor, $position_next_gt - $cursor);
}
$array[] = $token;
$cursor = $position_next_gt + 1;
$inside_tag = false;
continue;
} else {
// inside tag, but there's no ending > sign
if ($e) {
$e->send(E_WARNING, 'Lexer: Missing gt');
}
$token = new
HTMLPurifier_Token_Text(
'<' .
$this->parseText(
substr($html, $cursor), $config
)
);
if ($maintain_line_numbers) {
$token->rawPosition($current_line, $current_col);
}
// no cursor scroll? Hmm...
$array[] = $token;
break;
}
break;
}
$context->destroy('CurrentLine');
$context->destroy('CurrentCol');
return $array;
}
/**
* PHP 5.0.x compatible substr_count that implements offset and length
* @param string $haystack
* @param string $needle
* @param int $offset
* @param int $length
* @return int
*/
protected function substrCount($haystack, $needle, $offset, $length)
{
static $oldVersion;
if ($oldVersion === null) {
$oldVersion = version_compare(PHP_VERSION, '5.1', '<');
}
if ($oldVersion) {
$haystack = substr($haystack, $offset, $length);
return substr_count($haystack, $needle);
} else {
return substr_count($haystack, $needle, $offset, $length);
}
}
/**
* Takes the inside of an HTML tag and makes an assoc array of attributes.
*
* @param string $string Inside of tag excluding name.
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return array Assoc array of attributes.
*/
public function parseAttributeString($string, $config, $context)
{
$string = (string)$string; // quick typecast
if ($string == '') {
return array();
} // no attributes
$e = false;
if ($config->get('Core.CollectErrors')) {
$e =& $context->get('ErrorCollector');
}
// let's see if we can abort as quickly as possible
// one equal sign, no spaces => one attribute
$num_equal = substr_count($string, '=');
$has_space = strpos($string, ' ');
if ($num_equal === 0 && !$has_space) {
// bool attribute
return array($string => $string);
} elseif ($num_equal === 1 && !$has_space) {
// only one attribute
list($key, $quoted_value) = explode('=', $string);
$quoted_value = trim($quoted_value);
if (!$key) {
if ($e) {
$e->send(E_ERROR, 'Lexer: Missing attribute key');
}
return array();
}
if (!$quoted_value) {
return array($key => '');
}
$first_char = @$quoted_value[0];
$last_char = @$quoted_value[strlen($quoted_value) - 1];
$same_quote = ($first_char == $last_char);
$open_quote = ($first_char == '"' || $first_char == "'");
if ($same_quote && $open_quote) {
// well behaved
$value = substr($quoted_value, 1, strlen($quoted_value) - 2);
} else {
// not well behaved
if ($open_quote) {
if ($e) {
$e->send(E_ERROR, 'Lexer: Missing end quote');
}
$value = substr($quoted_value, 1);
} else {
$value = $quoted_value;
}
}
if ($value === false) {
$value = '';
}
return array($key => $this->parseAttr($value, $config));
}
// setup loop environment
$array = array(); // return assoc array of attributes
$cursor = 0; // current position in string (moves forward)
$size = strlen($string); // size of the string (stays the same)
// if we have unquoted attributes, the parser expects a terminating
// space, so let's guarantee that there's always a terminating space.
$string .= ' ';
$old_cursor = -1;
while ($cursor < $size) {
if ($old_cursor >= $cursor) {
throw new Exception("Infinite loop detected");
}
$old_cursor = $cursor;
$cursor += ($value = strspn($string, $this->_whitespace, $cursor));
// grab the key
$key_begin = $cursor; //we're currently at the start of the key
// scroll past all characters that are the key (not whitespace or =)
$cursor += strcspn($string, $this->_whitespace . '=', $cursor);
$key_end = $cursor; // now at the end of the key
$key = substr($string, $key_begin, $key_end - $key_begin);
if (!$key) {
if ($e) {
$e->send(E_ERROR, 'Lexer: Missing attribute key');
}
$cursor += 1 + strcspn($string, $this->_whitespace, $cursor + 1); // prevent infinite loop
continue; // empty key
}
// scroll past all whitespace
$cursor += strspn($string, $this->_whitespace, $cursor);
if ($cursor >= $size) {
$array[$key] = $key;
break;
}
// if the next character is an equal sign, we've got a regular
// pair, otherwise, it's a bool attribute
$first_char = @$string[$cursor];
if ($first_char == '=') {
// key="value"
$cursor++;
$cursor += strspn($string, $this->_whitespace, $cursor);
if ($cursor === false) {
$array[$key] = '';
break;
}
// we might be in front of a quote right now
$char = @$string[$cursor];
if ($char == '"' || $char == "'") {
// it's quoted, end bound is $char
$cursor++;
$value_begin = $cursor;
$cursor = strpos($string, $char, $cursor);
$value_end = $cursor;
} else {
// it's not quoted, end bound is whitespace
$value_begin = $cursor;
$cursor += strcspn($string, $this->_whitespace, $cursor);
$value_end = $cursor;
}
// we reached a premature end
if ($cursor === false) {
$cursor = $size;
$value_end = $cursor;
}
$value = substr($string, $value_begin, $value_end - $value_begin);
if ($value === false) {
$value = '';
}
$array[$key] = $this->parseAttr($value, $config);
$cursor++;
} else {
// boolattr
if ($key !== '') {
$array[$key] = $key;
} else {
// purely theoretical
if ($e) {
$e->send(E_ERROR, 'Lexer: Missing attribute key');
}
}
}
}
return $array;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/StringHash.php 0000644 00000002056 14716425662 0015777 0 ustar 00 accessed[$index] = true;
return parent::offsetGet($index);
}
/**
* Returns a lookup array of all array indexes that have been accessed.
* @return array in form array($index => true).
*/
public function getAccessed()
{
return $this->accessed;
}
/**
* Resets the access array.
*/
public function resetAccessed()
{
$this->accessed = array();
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/TagTransform/Simple.php 0000644 00000002226 14716425662 0017564 0 ustar 00 transform_to = $transform_to;
$this->style = $style;
}
/**
* @param HTMLPurifier_Token_Tag $tag
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return string
*/
public function transform($tag, $config, $context)
{
$new_tag = clone $tag;
$new_tag->name = $this->transform_to;
if (!is_null($this->style) &&
($new_tag instanceof HTMLPurifier_Token_Start || $new_tag instanceof HTMLPurifier_Token_Empty)
) {
$this->prependCSS($new_tag->attr, $this->style);
}
return $new_tag;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/TagTransform/error_log; 0000644 00000042030 14716425662 0017627 0 ustar 00 [29-Nov-2023 13:31:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Simple.php on line 8
[29-Nov-2023 13:31:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Font.php on line 18
[29-Nov-2023 14:17:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Font.php on line 18
[29-Nov-2023 14:17:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Simple.php on line 8
[29-Nov-2023 15:39:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Font.php on line 18
[29-Nov-2023 15:39:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Simple.php on line 8
[01-Dec-2023 08:44:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Font.php on line 18
[01-Dec-2023 08:45:02 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Simple.php on line 8
[23-Feb-2024 18:47:51 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Font.php on line 18
[29-Feb-2024 06:54:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Simple.php on line 8
[14-Mar-2024 23:11:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Font.php on line 18
[05-Apr-2024 00:24:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Simple.php on line 8
[03-May-2024 02:04:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Font.php on line 18
[03-May-2024 07:39:51 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Simple.php on line 8
[03-May-2024 21:26:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Font.php on line 18
[05-May-2024 01:29:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Simple.php on line 8
[05-May-2024 01:29:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Font.php on line 18
[05-May-2024 11:25:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Simple.php on line 8
[05-May-2024 11:25:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Font.php on line 18
[05-May-2024 20:50:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Simple.php on line 8
[05-May-2024 20:50:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Font.php on line 18
[09-May-2024 06:05:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Simple.php on line 8
[13-May-2024 11:54:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Font.php on line 18
[13-May-2024 13:11:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Simple.php on line 8
[14-May-2024 20:17:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Simple.php on line 8
[14-May-2024 20:17:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Font.php on line 18
[19-May-2024 11:21:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Font.php on line 18
[10-Jun-2024 11:01:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Font.php on line 18
[14-Jun-2024 13:25:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Font.php on line 18
[14-Jun-2024 13:43:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Simple.php on line 8
[14-Jun-2024 23:45:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Simple.php on line 8
[15-Jun-2024 16:42:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Font.php on line 18
[18-Jun-2024 22:58:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Simple.php on line 8
[18-Jun-2024 22:59:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Font.php on line 18
[19-Jun-2024 07:56:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Simple.php on line 8
[19-Jun-2024 07:56:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Font.php on line 18
[19-Jun-2024 20:46:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Simple.php on line 8
[19-Jun-2024 20:46:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Font.php on line 18
[20-Jun-2024 14:54:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Simple.php on line 8
[02-Jul-2024 09:40:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Simple.php on line 8
[18-Jul-2024 20:29:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Font.php on line 18
[18-Jul-2024 22:00:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Font.php on line 18
[19-Jul-2024 12:01:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Simple.php on line 8
[22-Jul-2024 19:41:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Simple.php on line 8
[22-Jul-2024 19:41:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Font.php on line 18
[23-Jul-2024 05:55:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Simple.php on line 8
[25-Jul-2024 13:16:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Simple.php on line 8
[26-Jul-2024 02:51:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Font.php on line 18
[29-Jul-2024 02:03:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Simple.php on line 8
[01-Aug-2024 00:15:02 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Font.php on line 18
[07-Aug-2024 08:38:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Font.php on line 18
[13-Aug-2024 10:24:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Font.php on line 18
[25-Aug-2024 09:43:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Simple.php on line 8
[26-Aug-2024 03:52:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Font.php on line 18
[27-Aug-2024 15:44:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Font.php on line 18
[28-Aug-2024 04:16:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Font.php on line 18
[30-Aug-2024 21:51:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Font.php on line 18
[01-Sep-2024 11:32:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Simple.php on line 8
[01-Sep-2024 23:40:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Simple.php on line 8
[01-Sep-2024 23:40:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Font.php on line 18
[09-Sep-2024 17:27:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Simple.php on line 8
[09-Sep-2024 22:03:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Simple.php on line 8
[10-Sep-2024 09:53:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Simple.php on line 8
[11-Sep-2024 23:09:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Simple.php on line 8
[11-Sep-2024 23:09:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Font.php on line 18
[12-Sep-2024 05:41:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Font.php on line 18
[13-Sep-2024 07:01:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Simple.php on line 8
[13-Sep-2024 07:01:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Font.php on line 18
[13-Sep-2024 07:02:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Simple.php on line 8
[13-Sep-2024 07:02:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Font.php on line 18
[07-Oct-2024 11:56:02 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Font.php on line 18
[07-Oct-2024 17:49:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Simple.php on line 8
[08-Oct-2024 10:51:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Font.php on line 18
[10-Oct-2024 05:49:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Simple.php on line 8
[31-Oct-2024 14:20:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Simple.php on line 8
[31-Oct-2024 14:21:02 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Font.php on line 18
[09-Nov-2024 23:55:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Simple.php on line 8
[09-Nov-2024 23:55:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_TagTransform' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/TagTransform/Font.php on line 18
htmlpurifier/library/HTMLPurifier/TagTransform/Font.php 0000644 00000006453 14716425662 0017247 0 ustar 00 'xx-small',
'1' => 'xx-small',
'2' => 'small',
'3' => 'medium',
'4' => 'large',
'5' => 'x-large',
'6' => 'xx-large',
'7' => '300%',
'-1' => 'smaller',
'-2' => '60%',
'+1' => 'larger',
'+2' => '150%',
'+3' => '200%',
'+4' => '300%'
);
/**
* @param HTMLPurifier_Token_Tag $tag
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return HTMLPurifier_Token_End|string
*/
public function transform($tag, $config, $context)
{
if ($tag instanceof HTMLPurifier_Token_End) {
$new_tag = clone $tag;
$new_tag->name = $this->transform_to;
return $new_tag;
}
$attr = $tag->attr;
$prepend_style = '';
// handle color transform
if (isset($attr['color'])) {
$prepend_style .= 'color:' . $attr['color'] . ';';
unset($attr['color']);
}
// handle face transform
if (isset($attr['face'])) {
$prepend_style .= 'font-family:' . $attr['face'] . ';';
unset($attr['face']);
}
// handle size transform
if (isset($attr['size'])) {
// normalize large numbers
if ($attr['size'] !== '') {
if ($attr['size']{0} == '+' || $attr['size']{0} == '-') {
$size = (int)$attr['size'];
if ($size < -2) {
$attr['size'] = '-2';
}
if ($size > 4) {
$attr['size'] = '+4';
}
} else {
$size = (int)$attr['size'];
if ($size > 7) {
$attr['size'] = '7';
}
}
}
if (isset($this->_size_lookup[$attr['size']])) {
$prepend_style .= 'font-size:' .
$this->_size_lookup[$attr['size']] . ';';
}
unset($attr['size']);
}
if ($prepend_style) {
$attr['style'] = isset($attr['style']) ?
$prepend_style . $attr['style'] :
$prepend_style;
}
$new_tag = clone $tag;
$new_tag->name = $this->transform_to;
$new_tag->attr = $attr;
return $new_tag;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/Token/Text.php 0000644 00000002455 14716425662 0015734 0 ustar 00 data = $data;
$this->is_whitespace = ctype_space($data);
$this->line = $line;
$this->col = $col;
}
public function toNode() {
return new HTMLPurifier_Node_Text($this->data, $this->is_whitespace, $this->line, $this->col);
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/Token/Comment.php 0000644 00000001367 14716425662 0016413 0 ustar 00 data = $data;
$this->line = $line;
$this->col = $col;
}
public function toNode() {
return new HTMLPurifier_Node_Comment($this->data, $this->line, $this->col);
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/Token/Start.php 0000644 00000000207 14716425662 0016076 0 ustar 00 toNode not supported!");
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/Token/Tag.php 0000644 00000003740 14716425662 0015521 0 ustar 00 !empty($obj->is_tag)
* without having to use a function call is_a().
* @type bool
*/
public $is_tag = true;
/**
* The lower-case name of the tag, like 'a', 'b' or 'blockquote'.
*
* @note Strictly speaking, XML tags are case sensitive, so we shouldn't
* be lower-casing them, but these tokens cater to HTML tags, which are
* insensitive.
* @type string
*/
public $name;
/**
* Associative array of the tag's attributes.
* @type array
*/
public $attr = array();
/**
* Non-overloaded constructor, which lower-cases passed tag name.
*
* @param string $name String name.
* @param array $attr Associative array of attributes.
* @param int $line
* @param int $col
* @param array $armor
*/
public function __construct($name, $attr = array(), $line = null, $col = null, $armor = array())
{
$this->name = ctype_lower($name) ? $name : strtolower($name);
foreach ($attr as $key => $value) {
// normalization only necessary when key is not lowercase
if (!ctype_lower($key)) {
$new_key = strtolower($key);
if (!isset($attr[$new_key])) {
$attr[$new_key] = $attr[$key];
}
if ($new_key !== $key) {
unset($attr[$key]);
}
}
}
$this->attr = $attr;
$this->line = $line;
$this->col = $col;
$this->armor = $armor;
}
public function toNode() {
return new HTMLPurifier_Node_Element($this->name, $this->attr, $this->line, $this->col, $this->armor);
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/Token/Empty.php 0000644 00000000370 14716425662 0016100 0 ustar 00 empty = true;
return $n;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/URIFilter.php 0000644 00000004475 14716425662 0015541 0 ustar 00 get('URI.AllowedSchemes');
if (!$config->get('URI.OverrideAllowedSchemes') &&
!isset($allowed_schemes[$scheme])
) {
return;
}
if (isset($this->schemes[$scheme])) {
return $this->schemes[$scheme];
}
if (!isset($allowed_schemes[$scheme])) {
return;
}
$class = 'HTMLPurifier_URIScheme_' . $scheme;
if (!class_exists($class)) {
return;
}
$this->schemes[$scheme] = new $class();
return $this->schemes[$scheme];
}
/**
* Registers a custom scheme to the cache, bypassing reflection.
* @param string $scheme Scheme name
* @param HTMLPurifier_URIScheme $scheme_obj
*/
public function register($scheme, $scheme_obj)
{
$this->schemes[$scheme] = $scheme_obj;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ChildDef/Custom.php 0000644 00000005255 14716425662 0016645 0 ustar 00 dtd_regex = $dtd_regex;
$this->_compileRegex();
}
/**
* Compiles the PCRE regex from a DTD regex ($dtd_regex to $_pcre_regex)
*/
protected function _compileRegex()
{
$raw = str_replace(' ', '', $this->dtd_regex);
if ($raw{0} != '(') {
$raw = "($raw)";
}
$el = '[#a-zA-Z0-9_.-]+';
$reg = $raw;
// COMPLICATED! AND MIGHT BE BUGGY! I HAVE NO CLUE WHAT I'M
// DOING! Seriously: if there's problems, please report them.
// collect all elements into the $elements array
preg_match_all("/$el/", $reg, $matches);
foreach ($matches[0] as $match) {
$this->elements[$match] = true;
}
// setup all elements as parentheticals with leading commas
$reg = preg_replace("/$el/", '(,\\0)', $reg);
// remove commas when they were not solicited
$reg = preg_replace("/([^,(|]\(+),/", '\\1', $reg);
// remove all non-paranthetical commas: they are handled by first regex
$reg = preg_replace("/,\(/", '(', $reg);
$this->_pcre_regex = $reg;
}
/**
* @param HTMLPurifier_Node[] $children
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return bool
*/
public function validateChildren($children, $config, $context)
{
$list_of_children = '';
$nesting = 0; // depth into the nest
foreach ($children as $node) {
if (!empty($node->is_whitespace)) {
continue;
}
$list_of_children .= $node->name . ',';
}
// add leading comma to deal with stray comma declarations
$list_of_children = ',' . rtrim($list_of_children, ',');
$okay =
preg_match(
'/^,?' . $this->_pcre_regex . '$/',
$list_of_children
);
return (bool)$okay;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ChildDef/Chameleon.php 0000644 00000003552 14716425662 0017264 0 ustar 00 inline = new HTMLPurifier_ChildDef_Optional($inline);
$this->block = new HTMLPurifier_ChildDef_Optional($block);
$this->elements = $this->block->elements;
}
/**
* @param HTMLPurifier_Node[] $children
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return bool
*/
public function validateChildren($children, $config, $context)
{
if ($context->get('IsInline') === false) {
return $this->block->validateChildren(
$children,
$config,
$context
);
} else {
return $this->inline->validateChildren(
$children,
$config,
$context
);
}
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ChildDef/Optional.php 0000644 00000002271 14716425662 0017153 0 ustar 00 whitespace) {
return $children;
} else {
return array();
}
}
return $result;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ChildDef/StrictBlockquote.php 0000644 00000005542 14716425662 0020673 0 ustar 00 init($config);
return $this->fake_elements;
}
/**
* @param array $children
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return array
*/
public function validateChildren($children, $config, $context)
{
$this->init($config);
// trick the parent class into thinking it allows more
$this->elements = $this->fake_elements;
$result = parent::validateChildren($children, $config, $context);
$this->elements = $this->real_elements;
if ($result === false) {
return array();
}
if ($result === true) {
$result = $children;
}
$def = $config->getHTMLDefinition();
$block_wrap_name = $def->info_block_wrapper;
$block_wrap = false;
$ret = array();
foreach ($result as $node) {
if ($block_wrap === false) {
if (($node instanceof HTMLPurifier_Node_Text && !$node->is_whitespace) ||
($node instanceof HTMLPurifier_Node_Element && !isset($this->elements[$node->name]))) {
$block_wrap = new HTMLPurifier_Node_Element($def->info_block_wrapper);
$ret[] = $block_wrap;
}
} else {
if ($node instanceof HTMLPurifier_Node_Element && isset($this->elements[$node->name])) {
$block_wrap = false;
}
}
if ($block_wrap) {
$block_wrap->children[] = $node;
} else {
$ret[] = $node;
}
}
return $ret;
}
/**
* @param HTMLPurifier_Config $config
*/
private function init($config)
{
if (!$this->init) {
$def = $config->getHTMLDefinition();
// allow all inline elements
$this->real_elements = $this->elements;
$this->fake_elements = $def->info_content_sets['Flow'];
$this->fake_elements['#PCDATA'] = true;
$this->init = true;
}
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ChildDef/error_log; 0000644 00000235435 14716425662 0016677 0 ustar 00 [18-Sep-2023 12:18:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Table.php on line 32
[19-Sep-2023 11:06:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Required.php on line 6
[21-Sep-2023 07:07:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/List.php on line 12
[22-Sep-2023 18:06:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Optional.php on line 10
[27-Sep-2023 10:43:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Empty.php on line 10
[18-Nov-2023 08:30:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Custom.php on line 9
[19-Nov-2023 07:43:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/StrictBlockquote.php on line 6
[19-Nov-2023 18:13:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Chameleon.php on line 12
[26-Nov-2023 09:42:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Optional.php on line 10
[29-Nov-2023 09:16:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Custom.php on line 9
[29-Nov-2023 09:16:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Empty.php on line 10
[29-Nov-2023 09:16:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Table.php on line 32
[29-Nov-2023 09:16:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Optional.php on line 10
[29-Nov-2023 09:16:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/StrictBlockquote.php on line 6
[29-Nov-2023 09:16:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Chameleon.php on line 12
[29-Nov-2023 09:16:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Required.php on line 6
[29-Nov-2023 09:16:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/List.php on line 12
[29-Nov-2023 11:27:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Custom.php on line 9
[29-Nov-2023 11:27:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/List.php on line 12
[29-Nov-2023 11:27:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Empty.php on line 10
[29-Nov-2023 11:27:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Chameleon.php on line 12
[29-Nov-2023 11:27:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Table.php on line 32
[29-Nov-2023 11:27:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Optional.php on line 10
[29-Nov-2023 11:27:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/StrictBlockquote.php on line 6
[29-Nov-2023 11:27:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Required.php on line 6
[29-Nov-2023 14:42:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Optional.php on line 10
[29-Nov-2023 14:42:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Custom.php on line 9
[29-Nov-2023 14:42:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Empty.php on line 10
[29-Nov-2023 14:42:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/List.php on line 12
[29-Nov-2023 14:42:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Chameleon.php on line 12
[29-Nov-2023 14:42:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Required.php on line 6
[29-Nov-2023 14:42:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Table.php on line 32
[29-Nov-2023 14:42:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/StrictBlockquote.php on line 6
[30-Nov-2023 20:07:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Table.php on line 32
[01-Dec-2023 22:37:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Optional.php on line 10
[01-Dec-2023 22:37:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Empty.php on line 10
[01-Dec-2023 22:37:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/StrictBlockquote.php on line 6
[01-Dec-2023 22:37:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Table.php on line 32
[01-Dec-2023 22:37:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Required.php on line 6
[01-Dec-2023 22:37:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Chameleon.php on line 12
[01-Dec-2023 22:37:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/List.php on line 12
[01-Dec-2023 22:37:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Custom.php on line 9
[03-Dec-2023 02:17:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Custom.php on line 9
[03-Dec-2023 09:42:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/StrictBlockquote.php on line 6
[08-Dec-2023 04:15:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/List.php on line 12
[01-Jan-2024 20:10:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Required.php on line 6
[03-Jan-2024 20:03:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Empty.php on line 10
[04-Jan-2024 14:02:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Optional.php on line 10
[14-Jan-2024 09:54:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Table.php on line 32
[17-Jan-2024 17:08:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Custom.php on line 9
[21-Jan-2024 13:36:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Chameleon.php on line 12
[25-Jan-2024 18:32:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/List.php on line 12
[27-Jan-2024 09:50:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/StrictBlockquote.php on line 6
[27-Jan-2024 20:52:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Custom.php on line 9
[12-Mar-2024 21:38:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Optional.php on line 10
[14-Mar-2024 23:16:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Optional.php on line 10
[15-Mar-2024 00:48:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Empty.php on line 10
[15-Mar-2024 10:27:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Custom.php on line 9
[16-Mar-2024 02:18:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Empty.php on line 10
[17-Mar-2024 01:06:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Required.php on line 6
[31-Mar-2024 22:01:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/List.php on line 12
[01-Apr-2024 12:06:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Chameleon.php on line 12
[01-Apr-2024 12:27:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Table.php on line 32
[04-Apr-2024 23:34:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/StrictBlockquote.php on line 6
[05-Apr-2024 00:46:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Required.php on line 6
[08-Apr-2024 20:19:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Table.php on line 32
[13-Apr-2024 12:59:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Chameleon.php on line 12
[15-Apr-2024 23:40:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/List.php on line 12
[16-Apr-2024 14:54:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/StrictBlockquote.php on line 6
[18-Apr-2024 01:38:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Custom.php on line 9
[02-May-2024 13:03:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/List.php on line 12
[03-May-2024 05:55:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Chameleon.php on line 12
[03-May-2024 06:10:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/List.php on line 12
[03-May-2024 08:35:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Required.php on line 6
[03-May-2024 10:09:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Empty.php on line 10
[03-May-2024 10:48:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Optional.php on line 10
[03-May-2024 11:36:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/StrictBlockquote.php on line 6
[03-May-2024 11:49:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Table.php on line 32
[03-May-2024 15:59:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Custom.php on line 9
[05-May-2024 01:09:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Table.php on line 32
[05-May-2024 01:09:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Empty.php on line 10
[05-May-2024 01:09:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Custom.php on line 9
[05-May-2024 01:31:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Required.php on line 6
[05-May-2024 01:31:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Optional.php on line 10
[05-May-2024 01:31:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/List.php on line 12
[05-May-2024 01:31:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Chameleon.php on line 12
[05-May-2024 01:59:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/StrictBlockquote.php on line 6
[05-May-2024 11:04:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Table.php on line 32
[05-May-2024 11:04:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Empty.php on line 10
[05-May-2024 11:05:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Custom.php on line 9
[05-May-2024 11:26:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Required.php on line 6
[05-May-2024 11:26:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Optional.php on line 10
[05-May-2024 11:26:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/List.php on line 12
[05-May-2024 11:26:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Chameleon.php on line 12
[05-May-2024 11:54:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/StrictBlockquote.php on line 6
[05-May-2024 20:30:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Table.php on line 32
[05-May-2024 20:30:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Empty.php on line 10
[05-May-2024 20:30:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Custom.php on line 9
[05-May-2024 20:51:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Required.php on line 6
[05-May-2024 20:51:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Optional.php on line 10
[05-May-2024 20:51:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/List.php on line 12
[05-May-2024 20:51:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Chameleon.php on line 12
[05-May-2024 21:19:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/StrictBlockquote.php on line 6
[13-May-2024 11:19:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Chameleon.php on line 12
[13-May-2024 11:33:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Optional.php on line 10
[13-May-2024 11:39:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Empty.php on line 10
[13-May-2024 11:43:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/List.php on line 12
[13-May-2024 11:50:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Custom.php on line 9
[13-May-2024 12:05:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Required.php on line 6
[13-May-2024 12:48:02 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Table.php on line 32
[14-May-2024 09:29:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Optional.php on line 10
[14-May-2024 14:56:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Empty.php on line 10
[14-May-2024 20:13:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Table.php on line 32
[14-May-2024 20:13:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Empty.php on line 10
[14-May-2024 20:13:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Custom.php on line 9
[14-May-2024 20:18:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Required.php on line 6
[14-May-2024 20:18:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Optional.php on line 10
[14-May-2024 20:18:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/List.php on line 12
[14-May-2024 20:19:02 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Chameleon.php on line 12
[14-May-2024 20:22:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/StrictBlockquote.php on line 6
[18-May-2024 20:07:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Table.php on line 32
[18-May-2024 21:48:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/List.php on line 12
[18-May-2024 22:01:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Empty.php on line 10
[19-May-2024 00:31:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Required.php on line 6
[19-May-2024 01:05:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Custom.php on line 9
[19-May-2024 08:07:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Chameleon.php on line 12
[19-May-2024 09:05:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Optional.php on line 10
[19-May-2024 12:51:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Required.php on line 6
[25-May-2024 18:24:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Table.php on line 32
[31-May-2024 19:02:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Chameleon.php on line 12
[01-Jun-2024 00:48:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Custom.php on line 9
[01-Jun-2024 02:53:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/List.php on line 12
[01-Jun-2024 13:04:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/StrictBlockquote.php on line 6
[14-Jun-2024 11:27:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Table.php on line 32
[14-Jun-2024 11:49:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/List.php on line 12
[14-Jun-2024 11:49:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Chameleon.php on line 12
[14-Jun-2024 11:52:51 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Empty.php on line 10
[14-Jun-2024 12:21:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Optional.php on line 10
[14-Jun-2024 13:06:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Custom.php on line 9
[14-Jun-2024 13:40:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/StrictBlockquote.php on line 6
[14-Jun-2024 13:48:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Required.php on line 6
[15-Jun-2024 05:16:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Chameleon.php on line 12
[15-Jun-2024 11:09:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Empty.php on line 10
[15-Jun-2024 12:08:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Custom.php on line 9
[15-Jun-2024 12:28:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Required.php on line 6
[15-Jun-2024 16:13:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/StrictBlockquote.php on line 6
[18-Jun-2024 16:51:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/List.php on line 12
[18-Jun-2024 22:56:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Table.php on line 32
[18-Jun-2024 22:56:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Empty.php on line 10
[18-Jun-2024 22:56:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Custom.php on line 9
[18-Jun-2024 23:00:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Required.php on line 6
[18-Jun-2024 23:00:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Optional.php on line 10
[18-Jun-2024 23:00:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/List.php on line 12
[18-Jun-2024 23:00:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Chameleon.php on line 12
[18-Jun-2024 23:02:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/StrictBlockquote.php on line 6
[19-Jun-2024 07:54:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Table.php on line 32
[19-Jun-2024 07:54:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Empty.php on line 10
[19-Jun-2024 07:54:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Custom.php on line 9
[19-Jun-2024 07:57:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Required.php on line 6
[19-Jun-2024 07:58:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Optional.php on line 10
[19-Jun-2024 07:58:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/List.php on line 12
[19-Jun-2024 07:58:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Chameleon.php on line 12
[19-Jun-2024 08:00:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/StrictBlockquote.php on line 6
[19-Jun-2024 20:43:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Table.php on line 32
[19-Jun-2024 20:43:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Empty.php on line 10
[19-Jun-2024 20:43:51 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Custom.php on line 9
[19-Jun-2024 20:47:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Required.php on line 6
[19-Jun-2024 20:47:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Optional.php on line 10
[19-Jun-2024 20:47:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/List.php on line 12
[19-Jun-2024 20:47:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Chameleon.php on line 12
[19-Jun-2024 20:50:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/StrictBlockquote.php on line 6
[20-Jun-2024 20:47:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Optional.php on line 10
[21-Jun-2024 00:28:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Table.php on line 32
[21-Jun-2024 19:28:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Optional.php on line 10
[22-Jun-2024 03:04:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Empty.php on line 10
[22-Jun-2024 17:41:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Required.php on line 6
[28-Jun-2024 05:36:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Empty.php on line 10
[29-Jun-2024 23:29:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/List.php on line 12
[30-Jun-2024 03:37:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/StrictBlockquote.php on line 6
[30-Jun-2024 04:07:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Required.php on line 6
[02-Jul-2024 09:33:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Optional.php on line 10
[03-Jul-2024 15:24:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Table.php on line 32
[05-Jul-2024 04:53:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Empty.php on line 10
[06-Jul-2024 04:33:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/List.php on line 12
[06-Jul-2024 09:56:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/StrictBlockquote.php on line 6
[06-Jul-2024 10:39:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Required.php on line 6
[09-Jul-2024 02:38:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Optional.php on line 10
[09-Jul-2024 05:05:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/StrictBlockquote.php on line 6
[09-Jul-2024 19:47:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Custom.php on line 9
[09-Jul-2024 21:18:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Chameleon.php on line 12
[09-Jul-2024 22:51:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/List.php on line 12
[11-Jul-2024 05:08:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Empty.php on line 10
[17-Jul-2024 19:47:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Empty.php on line 10
[18-Jul-2024 18:54:02 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Required.php on line 6
[19-Jul-2024 00:46:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Custom.php on line 9
[19-Jul-2024 11:21:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/StrictBlockquote.php on line 6
[19-Jul-2024 16:43:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Chameleon.php on line 12
[20-Jul-2024 16:23:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Optional.php on line 10
[21-Jul-2024 12:23:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/StrictBlockquote.php on line 6
[21-Jul-2024 19:06:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/List.php on line 12
[22-Jul-2024 04:55:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Table.php on line 32
[22-Jul-2024 12:36:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Custom.php on line 9
[22-Jul-2024 19:31:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Table.php on line 32
[22-Jul-2024 19:31:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Empty.php on line 10
[22-Jul-2024 19:31:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Custom.php on line 9
[22-Jul-2024 19:43:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Required.php on line 6
[22-Jul-2024 19:43:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Optional.php on line 10
[22-Jul-2024 19:43:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/List.php on line 12
[22-Jul-2024 19:43:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Chameleon.php on line 12
[22-Jul-2024 20:07:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/StrictBlockquote.php on line 6
[23-Jul-2024 03:56:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Optional.php on line 10
[23-Jul-2024 17:56:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Optional.php on line 10
[25-Jul-2024 21:29:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/List.php on line 12
[25-Jul-2024 21:37:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Optional.php on line 10
[26-Jul-2024 00:45:02 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Optional.php on line 10
[26-Jul-2024 00:54:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Chameleon.php on line 12
[26-Jul-2024 02:22:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Table.php on line 32
[26-Jul-2024 03:48:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Custom.php on line 9
[28-Jul-2024 10:13:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Required.php on line 6
[29-Jul-2024 01:46:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Optional.php on line 10
[29-Jul-2024 09:02:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Required.php on line 6
[29-Jul-2024 21:48:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Empty.php on line 10
[31-Jul-2024 19:07:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Chameleon.php on line 12
[31-Jul-2024 19:35:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Optional.php on line 10
[31-Jul-2024 21:16:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Chameleon.php on line 12
[01-Aug-2024 01:22:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Custom.php on line 9
[01-Aug-2024 01:36:02 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Custom.php on line 9
[02-Aug-2024 09:56:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/List.php on line 12
[07-Aug-2024 01:10:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Required.php on line 6
[07-Aug-2024 07:29:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Chameleon.php on line 12
[07-Aug-2024 09:11:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Custom.php on line 9
[10-Aug-2024 23:39:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Table.php on line 32
[12-Aug-2024 19:33:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Chameleon.php on line 12
[13-Aug-2024 07:22:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Custom.php on line 9
[15-Aug-2024 20:44:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/StrictBlockquote.php on line 6
[16-Aug-2024 10:56:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Chameleon.php on line 12
[16-Aug-2024 13:14:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Custom.php on line 9
[18-Aug-2024 13:29:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Table.php on line 32
[20-Aug-2024 06:25:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Chameleon.php on line 12
[21-Aug-2024 04:47:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/List.php on line 12
[21-Aug-2024 20:04:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/StrictBlockquote.php on line 6
[22-Aug-2024 22:11:02 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Empty.php on line 10
[24-Aug-2024 12:24:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Empty.php on line 10
[25-Aug-2024 10:03:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/StrictBlockquote.php on line 6
[25-Aug-2024 13:05:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Required.php on line 6
[26-Aug-2024 02:10:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Custom.php on line 9
[26-Aug-2024 05:50:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Chameleon.php on line 12
[26-Aug-2024 07:36:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/List.php on line 12
[26-Aug-2024 07:53:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/StrictBlockquote.php on line 6
[26-Aug-2024 08:17:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Required.php on line 6
[26-Aug-2024 15:40:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/List.php on line 12
[26-Aug-2024 19:22:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Table.php on line 32
[26-Aug-2024 19:45:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Table.php on line 32
[27-Aug-2024 23:29:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Chameleon.php on line 12
[28-Aug-2024 03:18:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Custom.php on line 9
[28-Aug-2024 17:26:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Custom.php on line 9
[29-Aug-2024 20:20:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Empty.php on line 10
[31-Aug-2024 19:23:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Optional.php on line 10
[01-Sep-2024 07:56:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/List.php on line 12
[01-Sep-2024 08:44:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Chameleon.php on line 12
[01-Sep-2024 13:12:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Table.php on line 32
[01-Sep-2024 18:21:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Table.php on line 32
[01-Sep-2024 23:20:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Table.php on line 32
[01-Sep-2024 23:20:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Empty.php on line 10
[01-Sep-2024 23:20:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Custom.php on line 9
[01-Sep-2024 23:37:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Optional.php on line 10
[01-Sep-2024 23:42:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Required.php on line 6
[01-Sep-2024 23:42:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Optional.php on line 10
[01-Sep-2024 23:42:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/List.php on line 12
[01-Sep-2024 23:42:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Chameleon.php on line 12
[02-Sep-2024 00:10:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/StrictBlockquote.php on line 6
[02-Sep-2024 14:16:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Empty.php on line 10
[05-Sep-2024 00:04:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Required.php on line 6
[05-Sep-2024 08:01:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/List.php on line 12
[05-Sep-2024 08:12:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/StrictBlockquote.php on line 6
[05-Sep-2024 08:20:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Required.php on line 6
[05-Sep-2024 17:29:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Empty.php on line 10
[06-Sep-2024 00:18:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Required.php on line 6
[07-Sep-2024 19:50:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Table.php on line 32
[09-Sep-2024 15:34:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Required.php on line 6
[09-Sep-2024 20:59:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Required.php on line 6
[11-Sep-2024 22:59:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Table.php on line 32
[11-Sep-2024 23:00:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Empty.php on line 10
[11-Sep-2024 23:00:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Custom.php on line 9
[11-Sep-2024 23:11:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Required.php on line 6
[11-Sep-2024 23:11:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Optional.php on line 10
[11-Sep-2024 23:11:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/List.php on line 12
[11-Sep-2024 23:11:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Chameleon.php on line 12
[11-Sep-2024 23:35:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/StrictBlockquote.php on line 6
[13-Sep-2024 06:50:02 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Table.php on line 32
[13-Sep-2024 06:50:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Empty.php on line 10
[13-Sep-2024 06:50:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Custom.php on line 9
[13-Sep-2024 06:51:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Table.php on line 32
[13-Sep-2024 06:51:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Empty.php on line 10
[13-Sep-2024 06:51:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Custom.php on line 9
[13-Sep-2024 07:07:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Required.php on line 6
[13-Sep-2024 07:07:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Optional.php on line 10
[13-Sep-2024 07:07:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/List.php on line 12
[13-Sep-2024 07:08:02 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Chameleon.php on line 12
[13-Sep-2024 07:08:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Required.php on line 6
[13-Sep-2024 07:08:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Optional.php on line 10
[13-Sep-2024 07:08:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/List.php on line 12
[13-Sep-2024 07:08:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Chameleon.php on line 12
[13-Sep-2024 07:21:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/StrictBlockquote.php on line 6
[13-Sep-2024 07:21:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/StrictBlockquote.php on line 6
[15-Sep-2024 03:10:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/List.php on line 12
[15-Sep-2024 03:20:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/StrictBlockquote.php on line 6
[15-Sep-2024 13:11:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Required.php on line 6
[16-Sep-2024 20:56:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Custom.php on line 9
[17-Sep-2024 05:37:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Table.php on line 32
[20-Sep-2024 13:28:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/StrictBlockquote.php on line 6
[21-Sep-2024 07:16:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/List.php on line 12
[21-Sep-2024 10:32:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Chameleon.php on line 12
[21-Sep-2024 12:28:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/StrictBlockquote.php on line 6
[21-Sep-2024 14:00:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Custom.php on line 9
[22-Sep-2024 03:55:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Required.php on line 6
[22-Sep-2024 21:08:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/StrictBlockquote.php on line 6
[26-Sep-2024 21:39:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/List.php on line 12
[27-Sep-2024 22:38:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/List.php on line 12
[28-Sep-2024 00:08:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/StrictBlockquote.php on line 6
[28-Sep-2024 01:17:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Required.php on line 6
[03-Oct-2024 10:48:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/List.php on line 12
[07-Oct-2024 12:54:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Required.php on line 6
[07-Oct-2024 18:02:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/StrictBlockquote.php on line 6
[07-Oct-2024 18:59:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Custom.php on line 9
[07-Oct-2024 21:26:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Chameleon.php on line 12
[07-Oct-2024 23:51:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Empty.php on line 10
[08-Oct-2024 18:43:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Optional.php on line 10
[09-Oct-2024 04:34:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/List.php on line 12
[09-Oct-2024 11:42:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Required.php on line 6
[09-Oct-2024 22:11:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Optional.php on line 10
[10-Oct-2024 04:38:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Table.php on line 32
[12-Oct-2024 11:25:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Table.php on line 32
[14-Oct-2024 04:46:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Empty.php on line 10
[15-Oct-2024 04:43:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Required.php on line 6
[16-Oct-2024 10:58:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/StrictBlockquote.php on line 6
[18-Oct-2024 16:26:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Optional.php on line 10
[18-Oct-2024 16:32:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Table.php on line 32
[18-Oct-2024 16:32:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Chameleon.php on line 12
[18-Oct-2024 16:34:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Required.php on line 6
[18-Oct-2024 16:35:02 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Custom.php on line 9
[18-Oct-2024 16:35:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Empty.php on line 10
[18-Oct-2024 16:35:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/List.php on line 12
[19-Oct-2024 19:17:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Table.php on line 32
[24-Oct-2024 10:41:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Table.php on line 32
[25-Oct-2024 04:49:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Table.php on line 32
[27-Oct-2024 05:35:51 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Chameleon.php on line 12
[29-Oct-2024 14:14:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/StrictBlockquote.php on line 6
[29-Oct-2024 16:40:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Custom.php on line 9
[30-Oct-2024 10:29:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Chameleon.php on line 12
[31-Oct-2024 14:10:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Table.php on line 32
[31-Oct-2024 14:10:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Empty.php on line 10
[31-Oct-2024 14:10:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Custom.php on line 9
[31-Oct-2024 14:27:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Required.php on line 6
[31-Oct-2024 14:27:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Optional.php on line 10
[31-Oct-2024 14:27:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/List.php on line 12
[31-Oct-2024 14:27:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Chameleon.php on line 12
[31-Oct-2024 14:38:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/StrictBlockquote.php on line 6
[10-Nov-2024 05:07:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Table.php on line 32
[10-Nov-2024 05:07:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Empty.php on line 10
[10-Nov-2024 05:07:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Custom.php on line 9
[10-Nov-2024 05:07:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Required.php on line 6
[10-Nov-2024 05:07:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Optional.php on line 10
[10-Nov-2024 05:07:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/List.php on line 12
[10-Nov-2024 05:07:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/Chameleon.php on line 12
[10-Nov-2024 05:07:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_ChildDef_Required' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/StrictBlockquote.php on line 6
htmlpurifier/library/HTMLPurifier/ChildDef/Table.php 0000644 00000015730 14716425662 0016421 0 ustar 00 true,
'tbody' => true,
'thead' => true,
'tfoot' => true,
'caption' => true,
'colgroup' => true,
'col' => true
);
public function __construct()
{
}
/**
* @param array $children
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return array
*/
public function validateChildren($children, $config, $context)
{
if (empty($children)) {
return false;
}
// only one of these elements is allowed in a table
$caption = false;
$thead = false;
$tfoot = false;
// whitespace
$initial_ws = array();
$after_caption_ws = array();
$after_thead_ws = array();
$after_tfoot_ws = array();
// as many of these as you want
$cols = array();
$content = array();
$tbody_mode = false; // if true, then we need to wrap any stray
// s with a
.
$ws_accum =& $initial_ws;
foreach ($children as $node) {
if ($node instanceof HTMLPurifier_Node_Comment) {
$ws_accum[] = $node;
continue;
}
switch ($node->name) {
case 'tbody':
$tbody_mode = true;
// fall through
case 'tr':
$content[] = $node;
$ws_accum =& $content;
break;
case 'caption':
// there can only be one caption!
if ($caption !== false) break;
$caption = $node;
$ws_accum =& $after_caption_ws;
break;
case 'thead':
$tbody_mode = true;
// XXX This breaks rendering properties with
// Firefox, which never floats a to
// the top. Ever. (Our scheme will float the
// first to the top.) So maybe
// s that are not first should be
// turned into ? Very tricky, indeed.
if ($thead === false) {
$thead = $node;
$ws_accum =& $after_thead_ws;
} else {
// Oops, there's a second one! What
// should we do? Current behavior is to
// transmutate the first and last entries into
// tbody tags, and then put into content.
// Maybe a better idea is to *attach
// it* to the existing thead or tfoot?
// We don't do this, because Firefox
// doesn't float an extra tfoot to the
// bottom like it does for the first one.
$node->name = 'tbody';
$content[] = $node;
$ws_accum =& $content;
}
break;
case 'tfoot':
// see above for some aveats
$tbody_mode = true;
if ($tfoot === false) {
$tfoot = $node;
$ws_accum =& $after_tfoot_ws;
} else {
$node->name = 'tbody';
$content[] = $node;
$ws_accum =& $content;
}
break;
case 'colgroup':
case 'col':
$cols[] = $node;
$ws_accum =& $cols;
break;
case '#PCDATA':
// How is whitespace handled? We treat is as sticky to
// the *end* of the previous element. So all of the
// nonsense we have worked on is to keep things
// together.
if (!empty($node->is_whitespace)) {
$ws_accum[] = $node;
}
break;
}
}
if (empty($content)) {
return false;
}
$ret = $initial_ws;
if ($caption !== false) {
$ret[] = $caption;
$ret = array_merge($ret, $after_caption_ws);
}
if ($cols !== false) {
$ret = array_merge($ret, $cols);
}
if ($thead !== false) {
$ret[] = $thead;
$ret = array_merge($ret, $after_thead_ws);
}
if ($tfoot !== false) {
$ret[] = $tfoot;
$ret = array_merge($ret, $after_tfoot_ws);
}
if ($tbody_mode) {
// we have to shuffle tr into tbody
$current_tr_tbody = null;
foreach($content as $node) {
switch ($node->name) {
case 'tbody':
$current_tr_tbody = null;
$ret[] = $node;
break;
case 'tr':
if ($current_tr_tbody === null) {
$current_tr_tbody = new HTMLPurifier_Node_Element('tbody');
$ret[] = $current_tr_tbody;
}
$current_tr_tbody->children[] = $node;
break;
case '#PCDATA':
//assert($node->is_whitespace);
if ($current_tr_tbody === null) {
$ret[] = $node;
} else {
$current_tr_tbody->children[] = $node;
}
break;
}
}
} else {
$ret = array_merge($ret, $content);
}
return $ret;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ChildDef/Required.php 0000644 00000006426 14716425662 0017154 0 ustar 00 $x) {
$elements[$i] = true;
if (empty($i)) {
unset($elements[$i]);
} // remove blank
}
}
$this->elements = $elements;
}
/**
* @type bool
*/
public $allow_empty = false;
/**
* @type string
*/
public $type = 'required';
/**
* @param array $children
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return array
*/
public function validateChildren($children, $config, $context)
{
// Flag for subclasses
$this->whitespace = false;
// if there are no tokens, delete parent node
if (empty($children)) {
return false;
}
// the new set of children
$result = array();
// whether or not parsed character data is allowed
// this controls whether or not we silently drop a tag
// or generate escaped HTML from it
$pcdata_allowed = isset($this->elements['#PCDATA']);
// a little sanity check to make sure it's not ALL whitespace
$all_whitespace = true;
$stack = array_reverse($children);
while (!empty($stack)) {
$node = array_pop($stack);
if (!empty($node->is_whitespace)) {
$result[] = $node;
continue;
}
$all_whitespace = false; // phew, we're not talking about whitespace
if (!isset($this->elements[$node->name])) {
// special case text
// XXX One of these ought to be redundant or something
if ($pcdata_allowed && $node instanceof HTMLPurifier_Node_Text) {
$result[] = $node;
continue;
}
// spill the child contents in
// ToDo: Make configurable
if ($node instanceof HTMLPurifier_Node_Element) {
for ($i = count($node->children) - 1; $i >= 0; $i--) {
$stack[] = $node->children[$i];
}
continue;
}
continue;
}
$result[] = $node;
}
if (empty($result)) {
return false;
}
if ($all_whitespace) {
$this->whitespace = true;
return false;
}
return $result;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ChildDef/List.php 0000644 00000005705 14716425662 0016306 0 ustar 00 true, 'ul' => true, 'ol' => true);
/**
* @param array $children
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return array
*/
public function validateChildren($children, $config, $context)
{
// Flag for subclasses
$this->whitespace = false;
// if there are no tokens, delete parent node
if (empty($children)) {
return false;
}
// if li is not allowed, delete parent node
if (!isset($config->getHTMLDefinition()->info['li'])) {
trigger_error("Cannot allow ul/ol without allowing li", E_USER_WARNING);
return false;
}
// the new set of children
$result = array();
// a little sanity check to make sure it's not ALL whitespace
$all_whitespace = true;
$current_li = null;
foreach ($children as $node) {
if (!empty($node->is_whitespace)) {
$result[] = $node;
continue;
}
$all_whitespace = false; // phew, we're not talking about whitespace
if ($node->name === 'li') {
// good
$current_li = $node;
$result[] = $node;
} else {
// we want to tuck this into the previous li
// Invariant: we expect the node to be ol/ul
// ToDo: Make this more robust in the case of not ol/ul
// by distinguishing between existing li and li created
// to handle non-list elements; non-list elements should
// not be appended to an existing li; only li created
// for non-list. This distinction is not currently made.
if ($current_li === null) {
$current_li = new HTMLPurifier_Node_Element('li');
$result[] = $current_li;
}
$current_li->children[] = $node;
$current_li->empty = false; // XXX fascinating! Check for this error elsewhere ToDo
}
}
if (empty($result)) {
return false;
}
if ($all_whitespace) {
return false;
}
return $result;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ChildDef/Empty.php 0000644 00000001542 14716425662 0016464 0 ustar 00 config =& $config;
$this->def = $config->getHTMLDefinition();
$ret .= $this->start('div', array('class' => 'HTMLPurifier_Printer'));
$ret .= $this->renderDoctype();
$ret .= $this->renderEnvironment();
$ret .= $this->renderContentSets();
$ret .= $this->renderInfo();
$ret .= $this->end('div');
return $ret;
}
/**
* Renders the Doctype table
* @return string
*/
protected function renderDoctype()
{
$doctype = $this->def->doctype;
$ret = '';
$ret .= $this->start('table');
$ret .= $this->element('caption', 'Doctype');
$ret .= $this->row('Name', $doctype->name);
$ret .= $this->row('XML', $doctype->xml ? 'Yes' : 'No');
$ret .= $this->row('Default Modules', implode($doctype->modules, ', '));
$ret .= $this->row('Default Tidy Modules', implode($doctype->tidyModules, ', '));
$ret .= $this->end('table');
return $ret;
}
/**
* Renders environment table, which is miscellaneous info
* @return string
*/
protected function renderEnvironment()
{
$def = $this->def;
$ret = '';
$ret .= $this->start('table');
$ret .= $this->element('caption', 'Environment');
$ret .= $this->row('Parent of fragment', $def->info_parent);
$ret .= $this->renderChildren($def->info_parent_def->child);
$ret .= $this->row('Block wrap name', $def->info_block_wrapper);
$ret .= $this->start('tr');
$ret .= $this->element('th', 'Global attributes');
$ret .= $this->element('td', $this->listifyAttr($def->info_global_attr), null, 0);
$ret .= $this->end('tr');
$ret .= $this->start('tr');
$ret .= $this->element('th', 'Tag transforms');
$list = array();
foreach ($def->info_tag_transform as $old => $new) {
$new = $this->getClass($new, 'TagTransform_');
$list[] = "<$old> with $new";
}
$ret .= $this->element('td', $this->listify($list));
$ret .= $this->end('tr');
$ret .= $this->start('tr');
$ret .= $this->element('th', 'Pre-AttrTransform');
$ret .= $this->element('td', $this->listifyObjectList($def->info_attr_transform_pre));
$ret .= $this->end('tr');
$ret .= $this->start('tr');
$ret .= $this->element('th', 'Post-AttrTransform');
$ret .= $this->element('td', $this->listifyObjectList($def->info_attr_transform_post));
$ret .= $this->end('tr');
$ret .= $this->end('table');
return $ret;
}
/**
* Renders the Content Sets table
* @return string
*/
protected function renderContentSets()
{
$ret = '';
$ret .= $this->start('table');
$ret .= $this->element('caption', 'Content Sets');
foreach ($this->def->info_content_sets as $name => $lookup) {
$ret .= $this->heavyHeader($name);
$ret .= $this->start('tr');
$ret .= $this->element('td', $this->listifyTagLookup($lookup));
$ret .= $this->end('tr');
}
$ret .= $this->end('table');
return $ret;
}
/**
* Renders the Elements ($info) table
* @return string
*/
protected function renderInfo()
{
$ret = '';
$ret .= $this->start('table');
$ret .= $this->element('caption', 'Elements ($info)');
ksort($this->def->info);
$ret .= $this->heavyHeader('Allowed tags', 2);
$ret .= $this->start('tr');
$ret .= $this->element('td', $this->listifyTagLookup($this->def->info), array('colspan' => 2));
$ret .= $this->end('tr');
foreach ($this->def->info as $name => $def) {
$ret .= $this->start('tr');
$ret .= $this->element('th', "<$name>", array('class' => 'heavy', 'colspan' => 2));
$ret .= $this->end('tr');
$ret .= $this->start('tr');
$ret .= $this->element('th', 'Inline content');
$ret .= $this->element('td', $def->descendants_are_inline ? 'Yes' : 'No');
$ret .= $this->end('tr');
if (!empty($def->excludes)) {
$ret .= $this->start('tr');
$ret .= $this->element('th', 'Excludes');
$ret .= $this->element('td', $this->listifyTagLookup($def->excludes));
$ret .= $this->end('tr');
}
if (!empty($def->attr_transform_pre)) {
$ret .= $this->start('tr');
$ret .= $this->element('th', 'Pre-AttrTransform');
$ret .= $this->element('td', $this->listifyObjectList($def->attr_transform_pre));
$ret .= $this->end('tr');
}
if (!empty($def->attr_transform_post)) {
$ret .= $this->start('tr');
$ret .= $this->element('th', 'Post-AttrTransform');
$ret .= $this->element('td', $this->listifyObjectList($def->attr_transform_post));
$ret .= $this->end('tr');
}
if (!empty($def->auto_close)) {
$ret .= $this->start('tr');
$ret .= $this->element('th', 'Auto closed by');
$ret .= $this->element('td', $this->listifyTagLookup($def->auto_close));
$ret .= $this->end('tr');
}
$ret .= $this->start('tr');
$ret .= $this->element('th', 'Allowed attributes');
$ret .= $this->element('td', $this->listifyAttr($def->attr), array(), 0);
$ret .= $this->end('tr');
if (!empty($def->required_attr)) {
$ret .= $this->row('Required attributes', $this->listify($def->required_attr));
}
$ret .= $this->renderChildren($def->child);
}
$ret .= $this->end('table');
return $ret;
}
/**
* Renders a row describing the allowed children of an element
* @param HTMLPurifier_ChildDef $def HTMLPurifier_ChildDef of pertinent element
* @return string
*/
protected function renderChildren($def)
{
$context = new HTMLPurifier_Context();
$ret = '';
$ret .= $this->start('tr');
$elements = array();
$attr = array();
if (isset($def->elements)) {
if ($def->type == 'strictblockquote') {
$def->validateChildren(array(), $this->config, $context);
}
$elements = $def->elements;
}
if ($def->type == 'chameleon') {
$attr['rowspan'] = 2;
} elseif ($def->type == 'empty') {
$elements = array();
} elseif ($def->type == 'table') {
$elements = array_flip(
array(
'col',
'caption',
'colgroup',
'thead',
'tfoot',
'tbody',
'tr'
)
);
}
$ret .= $this->element('th', 'Allowed children', $attr);
if ($def->type == 'chameleon') {
$ret .= $this->element(
'td',
'Block: ' .
$this->escape($this->listifyTagLookup($def->block->elements)),
null,
0
);
$ret .= $this->end('tr');
$ret .= $this->start('tr');
$ret .= $this->element(
'td',
'Inline: ' .
$this->escape($this->listifyTagLookup($def->inline->elements)),
null,
0
);
} elseif ($def->type == 'custom') {
$ret .= $this->element(
'td',
'' . ucfirst($def->type) . ': ' .
$def->dtd_regex
);
} else {
$ret .= $this->element(
'td',
'' . ucfirst($def->type) . ': ' .
$this->escape($this->listifyTagLookup($elements)),
null,
0
);
}
$ret .= $this->end('tr');
return $ret;
}
/**
* Listifies a tag lookup table.
* @param array $array Tag lookup array in form of array('tagname' => true)
* @return string
*/
protected function listifyTagLookup($array)
{
ksort($array);
$list = array();
foreach ($array as $name => $discard) {
if ($name !== '#PCDATA' && !isset($this->def->info[$name])) {
continue;
}
$list[] = $name;
}
return $this->listify($list);
}
/**
* Listifies a list of objects by retrieving class names and internal state
* @param array $array List of objects
* @return string
* @todo Also add information about internal state
*/
protected function listifyObjectList($array)
{
ksort($array);
$list = array();
foreach ($array as $obj) {
$list[] = $this->getClass($obj, 'AttrTransform_');
}
return $this->listify($list);
}
/**
* Listifies a hash of attributes to AttrDef classes
* @param array $array Array hash in form of array('attrname' => HTMLPurifier_AttrDef)
* @return string
*/
protected function listifyAttr($array)
{
ksort($array);
$list = array();
foreach ($array as $name => $obj) {
if ($obj === false) {
continue;
}
$list[] = "$name = " . $this->getClass($obj, 'AttrDef_') . '';
}
return $this->listify($list);
}
/**
* Creates a heavy header row
* @param string $text
* @param int $num
* @return string
*/
protected function heavyHeader($text, $num = 1)
{
$ret = '';
$ret .= $this->start('tr');
$ret .= $this->element('th', $text, array('colspan' => $num, 'class' => 'heavy'));
$ret .= $this->end('tr');
return $ret;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.php 0000644 00000034737 14716425662 0017414 0 ustar 00 docURL = $doc_url;
$this->name = $name;
$this->compress = $compress;
// initialize sub-printers
$this->fields[0] = new HTMLPurifier_Printer_ConfigForm_default();
$this->fields[HTMLPurifier_VarParser::BOOL] = new HTMLPurifier_Printer_ConfigForm_bool();
}
/**
* Sets default column and row size for textareas in sub-printers
* @param $cols Integer columns of textarea, null to use default
* @param $rows Integer rows of textarea, null to use default
*/
public function setTextareaDimensions($cols = null, $rows = null)
{
if ($cols) {
$this->fields['default']->cols = $cols;
}
if ($rows) {
$this->fields['default']->rows = $rows;
}
}
/**
* Retrieves styling, in case it is not accessible by webserver
*/
public static function getCSS()
{
return file_get_contents(HTMLPURIFIER_PREFIX . '/HTMLPurifier/Printer/ConfigForm.css');
}
/**
* Retrieves JavaScript, in case it is not accessible by webserver
*/
public static function getJavaScript()
{
return file_get_contents(HTMLPURIFIER_PREFIX . '/HTMLPurifier/Printer/ConfigForm.js');
}
/**
* Returns HTML output for a configuration form
* @param HTMLPurifier_Config|array $config Configuration object of current form state, or an array
* where [0] has an HTML namespace and [1] is being rendered.
* @param array|bool $allowed Optional namespace(s) and directives to restrict form to.
* @param bool $render_controls
* @return string
*/
public function render($config, $allowed = true, $render_controls = true)
{
if (is_array($config) && isset($config[0])) {
$gen_config = $config[0];
$config = $config[1];
} else {
$gen_config = $config;
}
$this->config = $config;
$this->genConfig = $gen_config;
$this->prepareGenerator($gen_config);
$allowed = HTMLPurifier_Config::getAllowedDirectivesForForm($allowed, $config->def);
$all = array();
foreach ($allowed as $key) {
list($ns, $directive) = $key;
$all[$ns][$directive] = $config->get($ns . '.' . $directive);
}
$ret = '';
$ret .= $this->start('table', array('class' => 'hp-config'));
$ret .= $this->start('thead');
$ret .= $this->start('tr');
$ret .= $this->element('th', 'Directive', array('class' => 'hp-directive'));
$ret .= $this->element('th', 'Value', array('class' => 'hp-value'));
$ret .= $this->end('tr');
$ret .= $this->end('thead');
foreach ($all as $ns => $directives) {
$ret .= $this->renderNamespace($ns, $directives);
}
if ($render_controls) {
$ret .= $this->start('tbody');
$ret .= $this->start('tr');
$ret .= $this->start('td', array('colspan' => 2, 'class' => 'controls'));
$ret .= $this->elementEmpty('input', array('type' => 'submit', 'value' => 'Submit'));
$ret .= '[Reset]';
$ret .= $this->end('td');
$ret .= $this->end('tr');
$ret .= $this->end('tbody');
}
$ret .= $this->end('table');
return $ret;
}
/**
* Renders a single namespace
* @param $ns String namespace name
* @param array $directives array of directives to values
* @return string
*/
protected function renderNamespace($ns, $directives)
{
$ret = '';
$ret .= $this->start('tbody', array('class' => 'namespace'));
$ret .= $this->start('tr');
$ret .= $this->element('th', $ns, array('colspan' => 2));
$ret .= $this->end('tr');
$ret .= $this->end('tbody');
$ret .= $this->start('tbody');
foreach ($directives as $directive => $value) {
$ret .= $this->start('tr');
$ret .= $this->start('th');
if ($this->docURL) {
$url = str_replace('%s', urlencode("$ns.$directive"), $this->docURL);
$ret .= $this->start('a', array('href' => $url));
}
$attr = array('for' => "{$this->name}:$ns.$directive");
// crop directive name if it's too long
if (!$this->compress || (strlen($directive) < $this->compress)) {
$directive_disp = $directive;
} else {
$directive_disp = substr($directive, 0, $this->compress - 2) . '...';
$attr['title'] = $directive;
}
$ret .= $this->element(
'label',
$directive_disp,
// component printers must create an element with this id
$attr
);
if ($this->docURL) {
$ret .= $this->end('a');
}
$ret .= $this->end('th');
$ret .= $this->start('td');
$def = $this->config->def->info["$ns.$directive"];
if (is_int($def)) {
$allow_null = $def < 0;
$type = abs($def);
} else {
$type = $def->type;
$allow_null = isset($def->allow_null);
}
if (!isset($this->fields[$type])) {
$type = 0;
} // default
$type_obj = $this->fields[$type];
if ($allow_null) {
$type_obj = new HTMLPurifier_Printer_ConfigForm_NullDecorator($type_obj);
}
$ret .= $type_obj->render($ns, $directive, $value, $this->name, array($this->genConfig, $this->config));
$ret .= $this->end('td');
$ret .= $this->end('tr');
}
$ret .= $this->end('tbody');
return $ret;
}
}
/**
* Printer decorator for directives that accept null
*/
class HTMLPurifier_Printer_ConfigForm_NullDecorator extends HTMLPurifier_Printer
{
/**
* Printer being decorated
* @type HTMLPurifier_Printer
*/
protected $obj;
/**
* @param HTMLPurifier_Printer $obj Printer to decorate
*/
public function __construct($obj)
{
parent::__construct();
$this->obj = $obj;
}
/**
* @param string $ns
* @param string $directive
* @param string $value
* @param string $name
* @param HTMLPurifier_Config|array $config
* @return string
*/
public function render($ns, $directive, $value, $name, $config)
{
if (is_array($config) && isset($config[0])) {
$gen_config = $config[0];
$config = $config[1];
} else {
$gen_config = $config;
}
$this->prepareGenerator($gen_config);
$ret = '';
$ret .= $this->start('label', array('for' => "$name:Null_$ns.$directive"));
$ret .= $this->element('span', "$ns.$directive:", array('class' => 'verbose'));
$ret .= $this->text(' Null/Disabled');
$ret .= $this->end('label');
$attr = array(
'type' => 'checkbox',
'value' => '1',
'class' => 'null-toggle',
'name' => "$name" . "[Null_$ns.$directive]",
'id' => "$name:Null_$ns.$directive",
'onclick' => "toggleWriteability('$name:$ns.$directive',checked)" // INLINE JAVASCRIPT!!!!
);
if ($this->obj instanceof HTMLPurifier_Printer_ConfigForm_bool) {
// modify inline javascript slightly
$attr['onclick'] =
"toggleWriteability('$name:Yes_$ns.$directive',checked);" .
"toggleWriteability('$name:No_$ns.$directive',checked)";
}
if ($value === null) {
$attr['checked'] = 'checked';
}
$ret .= $this->elementEmpty('input', $attr);
$ret .= $this->text(' or ');
$ret .= $this->elementEmpty('br');
$ret .= $this->obj->render($ns, $directive, $value, $name, array($gen_config, $config));
return $ret;
}
}
/**
* Swiss-army knife configuration form field printer
*/
class HTMLPurifier_Printer_ConfigForm_default extends HTMLPurifier_Printer
{
/**
* @type int
*/
public $cols = 18;
/**
* @type int
*/
public $rows = 5;
/**
* @param string $ns
* @param string $directive
* @param string $value
* @param string $name
* @param HTMLPurifier_Config|array $config
* @return string
*/
public function render($ns, $directive, $value, $name, $config)
{
if (is_array($config) && isset($config[0])) {
$gen_config = $config[0];
$config = $config[1];
} else {
$gen_config = $config;
}
$this->prepareGenerator($gen_config);
// this should probably be split up a little
$ret = '';
$def = $config->def->info["$ns.$directive"];
if (is_int($def)) {
$type = abs($def);
} else {
$type = $def->type;
}
if (is_array($value)) {
switch ($type) {
case HTMLPurifier_VarParser::LOOKUP:
$array = $value;
$value = array();
foreach ($array as $val => $b) {
$value[] = $val;
}
//TODO does this need a break?
case HTMLPurifier_VarParser::ALIST:
$value = implode(PHP_EOL, $value);
break;
case HTMLPurifier_VarParser::HASH:
$nvalue = '';
foreach ($value as $i => $v) {
if (is_array($v)) {
// HACK
$v = implode(";", $v);
}
$nvalue .= "$i:$v" . PHP_EOL;
}
$value = $nvalue;
break;
default:
$value = '';
}
}
if ($type === HTMLPurifier_VarParser::MIXED) {
return 'Not supported';
$value = serialize($value);
}
$attr = array(
'name' => "$name" . "[$ns.$directive]",
'id' => "$name:$ns.$directive"
);
if ($value === null) {
$attr['disabled'] = 'disabled';
}
if (isset($def->allowed)) {
$ret .= $this->start('select', $attr);
foreach ($def->allowed as $val => $b) {
$attr = array();
if ($value == $val) {
$attr['selected'] = 'selected';
}
$ret .= $this->element('option', $val, $attr);
}
$ret .= $this->end('select');
} elseif ($type === HTMLPurifier_VarParser::TEXT ||
$type === HTMLPurifier_VarParser::ITEXT ||
$type === HTMLPurifier_VarParser::ALIST ||
$type === HTMLPurifier_VarParser::HASH ||
$type === HTMLPurifier_VarParser::LOOKUP) {
$attr['cols'] = $this->cols;
$attr['rows'] = $this->rows;
$ret .= $this->start('textarea', $attr);
$ret .= $this->text($value);
$ret .= $this->end('textarea');
} else {
$attr['value'] = $value;
$attr['type'] = 'text';
$ret .= $this->elementEmpty('input', $attr);
}
return $ret;
}
}
/**
* Bool form field printer
*/
class HTMLPurifier_Printer_ConfigForm_bool extends HTMLPurifier_Printer
{
/**
* @param string $ns
* @param string $directive
* @param string $value
* @param string $name
* @param HTMLPurifier_Config|array $config
* @return string
*/
public function render($ns, $directive, $value, $name, $config)
{
if (is_array($config) && isset($config[0])) {
$gen_config = $config[0];
$config = $config[1];
} else {
$gen_config = $config;
}
$this->prepareGenerator($gen_config);
$ret = '';
$ret .= $this->start('div', array('id' => "$name:$ns.$directive"));
$ret .= $this->start('label', array('for' => "$name:Yes_$ns.$directive"));
$ret .= $this->element('span', "$ns.$directive:", array('class' => 'verbose'));
$ret .= $this->text(' Yes');
$ret .= $this->end('label');
$attr = array(
'type' => 'radio',
'name' => "$name" . "[$ns.$directive]",
'id' => "$name:Yes_$ns.$directive",
'value' => '1'
);
if ($value === true) {
$attr['checked'] = 'checked';
}
if ($value === null) {
$attr['disabled'] = 'disabled';
}
$ret .= $this->elementEmpty('input', $attr);
$ret .= $this->start('label', array('for' => "$name:No_$ns.$directive"));
$ret .= $this->element('span', "$ns.$directive:", array('class' => 'verbose'));
$ret .= $this->text(' No');
$ret .= $this->end('label');
$attr = array(
'type' => 'radio',
'name' => "$name" . "[$ns.$directive]",
'id' => "$name:No_$ns.$directive",
'value' => '0'
);
if ($value === false) {
$attr['checked'] = 'checked';
}
if ($value === null) {
$attr['disabled'] = 'disabled';
}
$ret .= $this->elementEmpty('input', $attr);
$ret .= $this->end('div');
return $ret;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/Printer/error_log; 0000644 00000070646 14716425662 0016661 0 ustar 00 [28-Nov-2023 09:42:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/HTMLDefinition.php on line 3
[28-Nov-2023 09:42:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/CSSDefinition.php on line 3
[28-Nov-2023 09:42:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.php on line 6
[28-Nov-2023 14:00:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/CSSDefinition.php on line 3
[28-Nov-2023 14:00:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.php on line 6
[28-Nov-2023 14:00:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/HTMLDefinition.php on line 3
[30-Nov-2023 13:12:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/HTMLDefinition.php on line 3
[30-Nov-2023 13:12:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.php on line 6
[30-Nov-2023 13:12:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/CSSDefinition.php on line 3
[02-Dec-2023 00:40:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.php on line 6
[02-Dec-2023 00:40:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/HTMLDefinition.php on line 3
[02-Dec-2023 00:40:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/CSSDefinition.php on line 3
[03-Dec-2023 09:20:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.php on line 6
[24-Feb-2024 11:22:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.php on line 6
[25-Feb-2024 18:47:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/HTMLDefinition.php on line 3
[25-Feb-2024 19:36:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/CSSDefinition.php on line 3
[15-Mar-2024 00:15:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.php on line 6
[01-Apr-2024 07:02:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/HTMLDefinition.php on line 3
[01-Apr-2024 07:24:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/CSSDefinition.php on line 3
[03-May-2024 04:46:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/CSSDefinition.php on line 3
[03-May-2024 07:31:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.php on line 6
[03-May-2024 09:08:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.php on line 6
[03-May-2024 17:53:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/HTMLDefinition.php on line 3
[05-May-2024 01:09:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/HTMLDefinition.php on line 3
[05-May-2024 01:31:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.php on line 6
[05-May-2024 01:31:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/CSSDefinition.php on line 3
[05-May-2024 04:21:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/CSSDefinition.php on line 3
[05-May-2024 07:21:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/HTMLDefinition.php on line 3
[05-May-2024 11:05:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/HTMLDefinition.php on line 3
[05-May-2024 11:27:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.php on line 6
[05-May-2024 11:27:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/CSSDefinition.php on line 3
[05-May-2024 20:31:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/HTMLDefinition.php on line 3
[05-May-2024 20:52:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.php on line 6
[05-May-2024 20:52:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/CSSDefinition.php on line 3
[13-May-2024 11:48:02 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/HTMLDefinition.php on line 3
[13-May-2024 12:01:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/CSSDefinition.php on line 3
[13-May-2024 12:06:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.php on line 6
[14-May-2024 20:13:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/HTMLDefinition.php on line 3
[14-May-2024 20:19:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.php on line 6
[14-May-2024 20:19:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/CSSDefinition.php on line 3
[19-May-2024 12:32:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/HTMLDefinition.php on line 3
[19-May-2024 12:59:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.php on line 6
[19-May-2024 14:38:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/CSSDefinition.php on line 3
[10-Jun-2024 18:15:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/CSSDefinition.php on line 3
[10-Jun-2024 18:52:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.php on line 6
[11-Jun-2024 00:53:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/HTMLDefinition.php on line 3
[14-Jun-2024 13:02:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/HTMLDefinition.php on line 3
[14-Jun-2024 13:45:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/CSSDefinition.php on line 3
[14-Jun-2024 13:57:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.php on line 6
[15-Jun-2024 08:58:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/HTMLDefinition.php on line 3
[18-Jun-2024 14:07:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/CSSDefinition.php on line 3
[18-Jun-2024 22:57:02 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/HTMLDefinition.php on line 3
[18-Jun-2024 23:00:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.php on line 6
[18-Jun-2024 23:00:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/CSSDefinition.php on line 3
[19-Jun-2024 07:54:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/HTMLDefinition.php on line 3
[19-Jun-2024 07:58:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.php on line 6
[19-Jun-2024 07:58:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/CSSDefinition.php on line 3
[19-Jun-2024 20:44:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/HTMLDefinition.php on line 3
[19-Jun-2024 20:47:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.php on line 6
[19-Jun-2024 20:47:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/CSSDefinition.php on line 3
[21-Jun-2024 00:57:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.php on line 6
[30-Jun-2024 04:16:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/HTMLDefinition.php on line 3
[06-Jul-2024 10:51:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/HTMLDefinition.php on line 3
[14-Jul-2024 23:46:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.php on line 6
[15-Jul-2024 19:35:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/CSSDefinition.php on line 3
[16-Jul-2024 01:34:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/HTMLDefinition.php on line 3
[19-Jul-2024 02:35:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/HTMLDefinition.php on line 3
[22-Jul-2024 19:31:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/HTMLDefinition.php on line 3
[22-Jul-2024 19:43:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.php on line 6
[22-Jul-2024 19:43:32 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/CSSDefinition.php on line 3
[26-Jul-2024 03:14:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/CSSDefinition.php on line 3
[26-Jul-2024 08:53:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.php on line 6
[26-Jul-2024 16:30:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/CSSDefinition.php on line 3
[01-Aug-2024 00:32:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/CSSDefinition.php on line 3
[01-Aug-2024 20:16:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/CSSDefinition.php on line 3
[03-Aug-2024 02:36:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.php on line 6
[07-Aug-2024 08:55:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/CSSDefinition.php on line 3
[09-Aug-2024 09:26:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/HTMLDefinition.php on line 3
[12-Aug-2024 20:31:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/CSSDefinition.php on line 3
[13-Aug-2024 21:51:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/HTMLDefinition.php on line 3
[15-Aug-2024 03:05:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.php on line 6
[20-Aug-2024 07:56:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/CSSDefinition.php on line 3
[20-Aug-2024 22:14:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.php on line 6
[21-Aug-2024 16:21:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.php on line 6
[25-Aug-2024 16:29:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/HTMLDefinition.php on line 3
[26-Aug-2024 08:09:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/HTMLDefinition.php on line 3
[26-Aug-2024 17:42:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/HTMLDefinition.php on line 3
[26-Aug-2024 19:25:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.php on line 6
[01-Sep-2024 10:06:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/CSSDefinition.php on line 3
[01-Sep-2024 17:31:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.php on line 6
[01-Sep-2024 17:41:51 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.php on line 6
[01-Sep-2024 23:20:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/HTMLDefinition.php on line 3
[01-Sep-2024 23:42:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.php on line 6
[01-Sep-2024 23:42:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/CSSDefinition.php on line 3
[02-Sep-2024 18:53:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/CSSDefinition.php on line 3
[03-Sep-2024 19:36:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/CSSDefinition.php on line 3
[05-Sep-2024 08:18:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/HTMLDefinition.php on line 3
[07-Sep-2024 19:43:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.php on line 6
[07-Sep-2024 19:44:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/CSSDefinition.php on line 3
[08-Sep-2024 05:44:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/CSSDefinition.php on line 3
[11-Sep-2024 23:00:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/HTMLDefinition.php on line 3
[11-Sep-2024 23:11:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.php on line 6
[11-Sep-2024 23:11:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/CSSDefinition.php on line 3
[13-Sep-2024 06:51:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/HTMLDefinition.php on line 3
[13-Sep-2024 06:51:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/HTMLDefinition.php on line 3
[13-Sep-2024 07:08:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.php on line 6
[13-Sep-2024 07:08:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/CSSDefinition.php on line 3
[13-Sep-2024 07:08:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.php on line 6
[13-Sep-2024 07:08:59 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/CSSDefinition.php on line 3
[15-Sep-2024 12:30:16 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/HTMLDefinition.php on line 3
[20-Sep-2024 13:11:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/HTMLDefinition.php on line 3
[27-Sep-2024 09:01:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/CSSDefinition.php on line 3
[27-Sep-2024 10:52:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/CSSDefinition.php on line 3
[28-Sep-2024 01:14:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/HTMLDefinition.php on line 3
[28-Sep-2024 01:17:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/HTMLDefinition.php on line 3
[02-Oct-2024 13:33:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/CSSDefinition.php on line 3
[03-Oct-2024 12:13:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.php on line 6
[04-Oct-2024 08:31:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/HTMLDefinition.php on line 3
[04-Oct-2024 22:58:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/HTMLDefinition.php on line 3
[07-Oct-2024 07:39:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/HTMLDefinition.php on line 3
[07-Oct-2024 11:03:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.php on line 6
[09-Oct-2024 16:16:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/CSSDefinition.php on line 3
[10-Oct-2024 03:40:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.php on line 6
[19-Oct-2024 03:21:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/HTMLDefinition.php on line 3
[28-Oct-2024 14:25:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/CSSDefinition.php on line 3
[31-Oct-2024 14:11:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/HTMLDefinition.php on line 3
[31-Oct-2024 14:27:25 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.php on line 6
[31-Oct-2024 14:27:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/CSSDefinition.php on line 3
[06-Nov-2024 04:55:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/CSSDefinition.php on line 3
[10-Nov-2024 07:45:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/HTMLDefinition.php on line 3
[10-Nov-2024 07:45:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.php on line 6
[10-Nov-2024 07:45:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Printer' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/CSSDefinition.php on line 3
htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.css 0000644 00000000455 14716425662 0017403 0 ustar 00
.hp-config {}
.hp-config tbody th {text-align:right; padding-right:0.5em;}
.hp-config thead, .hp-config .namespace {background:#3C578C; color:#FFF;}
.hp-config .namespace th {text-align:center;}
.hp-config .verbose {display:none;}
.hp-config .controls {text-align:center;}
/* vim: et sw=4 sts=4 */
htmlpurifier/library/HTMLPurifier/Printer/CSSDefinition.php 0000644 00000002252 14716425662 0020007 0 ustar 00 def = $config->getCSSDefinition();
$ret = '';
$ret .= $this->start('div', array('class' => 'HTMLPurifier_Printer'));
$ret .= $this->start('table');
$ret .= $this->element('caption', 'Properties ($info)');
$ret .= $this->start('thead');
$ret .= $this->start('tr');
$ret .= $this->element('th', 'Property', array('class' => 'heavy'));
$ret .= $this->element('th', 'Definition', array('class' => 'heavy', 'style' => 'width:auto;'));
$ret .= $this->end('tr');
$ret .= $this->end('thead');
ksort($this->def->info);
foreach ($this->def->info as $property => $obj) {
$name = $this->getClass($obj, 'AttrDef_');
$ret .= $this->row($property, $name);
}
$ret .= $this->end('table');
$ret .= $this->end('div');
return $ret;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ChildDef.php 0000644 00000003027 14716425662 0015366 0 ustar 00 elements;
}
/**
* Validates nodes according to definition and returns modification.
*
* @param HTMLPurifier_Node[] $children Array of HTMLPurifier_Node
* @param HTMLPurifier_Config $config HTMLPurifier_Config object
* @param HTMLPurifier_Context $context HTMLPurifier_Context object
* @return bool|array true to leave nodes as is, false to remove parent node, array of replacement children
*/
abstract public function validateChildren($children, $config, $context);
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/EntityLookup.php 0000644 00000002622 14716425662 0016372 0 ustar 00 table = unserialize(file_get_contents($file));
}
/**
* Retrieves sole instance of the object.
* @param bool|HTMLPurifier_EntityLookup $prototype Optional prototype of custom lookup table to overload with.
* @return HTMLPurifier_EntityLookup
*/
public static function instance($prototype = false)
{
// no references, since PHP doesn't copy unless modified
static $instance = null;
if ($prototype) {
$instance = $prototype;
} elseif (!$instance) {
$instance = new HTMLPurifier_EntityLookup();
$instance->setup();
}
return $instance;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/DefinitionCache/Null.php 0000644 00000002510 14716425662 0017646 0 ustar 00 definitions[$this->generateKey($config)] = $def;
}
return $status;
}
/**
* @param HTMLPurifier_Definition $def
* @param HTMLPurifier_Config $config
* @return mixed
*/
public function set($def, $config)
{
$status = parent::set($def, $config);
if ($status) {
$this->definitions[$this->generateKey($config)] = $def;
}
return $status;
}
/**
* @param HTMLPurifier_Definition $def
* @param HTMLPurifier_Config $config
* @return mixed
*/
public function replace($def, $config)
{
$status = parent::replace($def, $config);
if ($status) {
$this->definitions[$this->generateKey($config)] = $def;
}
return $status;
}
/**
* @param HTMLPurifier_Config $config
* @return mixed
*/
public function get($config)
{
$key = $this->generateKey($config);
if (isset($this->definitions[$key])) {
return $this->definitions[$key];
}
$this->definitions[$key] = parent::get($config);
return $this->definitions[$key];
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/error_log; 0000644 00000042573 14716425662 0022172 0 ustar 00 [16-Sep-2023 16:25:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Memory.php on line 8
[20-Nov-2023 01:33:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Cleanup.php on line 7
[03-Dec-2023 05:41:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Cleanup.php on line 7
[03-Dec-2023 05:41:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Memory.php on line 8
[03-Dec-2023 05:48:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Memory.php on line 8
[03-Dec-2023 08:02:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Cleanup.php on line 7
[03-Dec-2023 08:02:51 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Memory.php on line 8
[03-Dec-2023 15:12:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Cleanup.php on line 7
[03-Dec-2023 15:13:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Memory.php on line 8
[04-Dec-2023 10:53:02 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Cleanup.php on line 7
[04-Dec-2023 10:53:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Memory.php on line 8
[04-Jan-2024 21:49:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Cleanup.php on line 7
[15-Jan-2024 01:33:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Memory.php on line 8
[04-Apr-2024 05:14:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Cleanup.php on line 7
[11-Apr-2024 10:23:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Memory.php on line 8
[05-May-2024 02:51:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Memory.php on line 8
[05-May-2024 02:51:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Cleanup.php on line 7
[05-May-2024 12:46:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Memory.php on line 8
[05-May-2024 12:46:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Cleanup.php on line 7
[05-May-2024 21:55:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Memory.php on line 8
[05-May-2024 21:55:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Cleanup.php on line 7
[13-May-2024 18:46:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Memory.php on line 8
[13-May-2024 22:44:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Cleanup.php on line 7
[14-May-2024 20:55:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Memory.php on line 8
[14-May-2024 20:55:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Cleanup.php on line 7
[31-May-2024 05:42:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Cleanup.php on line 7
[01-Jun-2024 06:37:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Memory.php on line 8
[15-Jun-2024 06:32:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Memory.php on line 8
[15-Jun-2024 08:29:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Cleanup.php on line 7
[18-Jun-2024 23:06:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Memory.php on line 8
[18-Jun-2024 23:06:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Cleanup.php on line 7
[19-Jun-2024 08:04:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Memory.php on line 8
[19-Jun-2024 08:04:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Cleanup.php on line 7
[19-Jun-2024 20:54:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Memory.php on line 8
[19-Jun-2024 20:54:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Cleanup.php on line 7
[10-Jul-2024 17:08:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Cleanup.php on line 7
[10-Jul-2024 18:02:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Memory.php on line 8
[22-Jul-2024 21:01:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Memory.php on line 8
[22-Jul-2024 21:01:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Cleanup.php on line 7
[23-Jul-2024 05:48:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Memory.php on line 8
[24-Jul-2024 08:33:05 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Cleanup.php on line 7
[29-Jul-2024 03:40:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Memory.php on line 8
[29-Jul-2024 23:38:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Cleanup.php on line 7
[04-Aug-2024 22:35:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Cleanup.php on line 7
[11-Aug-2024 01:55:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Cleanup.php on line 7
[16-Aug-2024 08:41:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Memory.php on line 8
[16-Aug-2024 17:15:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Cleanup.php on line 7
[26-Aug-2024 00:24:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Cleanup.php on line 7
[31-Aug-2024 23:00:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Cleanup.php on line 7
[02-Sep-2024 01:01:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Memory.php on line 8
[02-Sep-2024 01:01:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Cleanup.php on line 7
[02-Sep-2024 05:02:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Cleanup.php on line 7
[06-Sep-2024 10:58:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Memory.php on line 8
[11-Sep-2024 00:47:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Memory.php on line 8
[11-Sep-2024 09:37:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Memory.php on line 8
[12-Sep-2024 00:32:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Memory.php on line 8
[12-Sep-2024 00:32:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Cleanup.php on line 7
[13-Sep-2024 07:45:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Memory.php on line 8
[13-Sep-2024 07:45:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Cleanup.php on line 7
[13-Sep-2024 07:48:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Memory.php on line 8
[13-Sep-2024 07:48:30 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Cleanup.php on line 7
[18-Sep-2024 13:41:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Cleanup.php on line 7
[22-Sep-2024 10:52:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Memory.php on line 8
[22-Sep-2024 12:30:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Cleanup.php on line 7
[01-Oct-2024 22:05:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Cleanup.php on line 7
[30-Oct-2024 10:40:11 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Cleanup.php on line 7
[30-Oct-2024 21:54:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Memory.php on line 8
[31-Oct-2024 15:35:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Memory.php on line 8
[31-Oct-2024 15:35:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Cleanup.php on line 7
[10-Nov-2024 15:23:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Memory.php on line 8
[10-Nov-2024 15:23:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_DefinitionCache_Decorator' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Cleanup.php on line 7
htmlpurifier/library/HTMLPurifier/DefinitionCache/Decorator/Cleanup.php 0000644 00000003243 14716425662 0022251 0 ustar 00 copy();
// reference is necessary for mocks in PHP 4
$decorator->cache =& $cache;
$decorator->type = $cache->type;
return $decorator;
}
/**
* Cross-compatible clone substitute
* @return HTMLPurifier_DefinitionCache_Decorator
*/
public function copy()
{
return new HTMLPurifier_DefinitionCache_Decorator();
}
/**
* @param HTMLPurifier_Definition $def
* @param HTMLPurifier_Config $config
* @return mixed
*/
public function add($def, $config)
{
return $this->cache->add($def, $config);
}
/**
* @param HTMLPurifier_Definition $def
* @param HTMLPurifier_Config $config
* @return mixed
*/
public function set($def, $config)
{
return $this->cache->set($def, $config);
}
/**
* @param HTMLPurifier_Definition $def
* @param HTMLPurifier_Config $config
* @return mixed
*/
public function replace($def, $config)
{
return $this->cache->replace($def, $config);
}
/**
* @param HTMLPurifier_Config $config
* @return mixed
*/
public function get($config)
{
return $this->cache->get($config);
}
/**
* @param HTMLPurifier_Config $config
* @return mixed
*/
public function remove($config)
{
return $this->cache->remove($config);
}
/**
* @param HTMLPurifier_Config $config
* @return mixed
*/
public function flush($config)
{
return $this->cache->flush($config);
}
/**
* @param HTMLPurifier_Config $config
* @return mixed
*/
public function cleanup($config)
{
return $this->cache->cleanup($config);
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/DefinitionCache/Serializer.php 0000644 00000021704 14716425662 0021053 0 ustar 00 checkDefType($def)) {
return;
}
$file = $this->generateFilePath($config);
if (file_exists($file)) {
return false;
}
if (!$this->_prepareDir($config)) {
return false;
}
return $this->_write($file, serialize($def), $config);
}
/**
* @param HTMLPurifier_Definition $def
* @param HTMLPurifier_Config $config
* @return int|bool
*/
public function set($def, $config)
{
if (!$this->checkDefType($def)) {
return;
}
$file = $this->generateFilePath($config);
if (!$this->_prepareDir($config)) {
return false;
}
return $this->_write($file, serialize($def), $config);
}
/**
* @param HTMLPurifier_Definition $def
* @param HTMLPurifier_Config $config
* @return int|bool
*/
public function replace($def, $config)
{
if (!$this->checkDefType($def)) {
return;
}
$file = $this->generateFilePath($config);
if (!file_exists($file)) {
return false;
}
if (!$this->_prepareDir($config)) {
return false;
}
return $this->_write($file, serialize($def), $config);
}
/**
* @param HTMLPurifier_Config $config
* @return bool|HTMLPurifier_Config
*/
public function get($config)
{
$file = $this->generateFilePath($config);
if (!file_exists($file)) {
return false;
}
return unserialize(file_get_contents($file));
}
/**
* @param HTMLPurifier_Config $config
* @return bool
*/
public function remove($config)
{
$file = $this->generateFilePath($config);
if (!file_exists($file)) {
return false;
}
return unlink($file);
}
/**
* @param HTMLPurifier_Config $config
* @return bool
*/
public function flush($config)
{
if (!$this->_prepareDir($config)) {
return false;
}
$dir = $this->generateDirectoryPath($config);
$dh = opendir($dir);
// Apparently, on some versions of PHP, readdir will return
// an empty string if you pass an invalid argument to readdir.
// So you need this test. See #49.
if (false === $dh) {
return false;
}
while (false !== ($filename = readdir($dh))) {
if (empty($filename)) {
continue;
}
if ($filename[0] === '.') {
continue;
}
unlink($dir . '/' . $filename);
}
closedir($dh);
return true;
}
/**
* @param HTMLPurifier_Config $config
* @return bool
*/
public function cleanup($config)
{
if (!$this->_prepareDir($config)) {
return false;
}
$dir = $this->generateDirectoryPath($config);
$dh = opendir($dir);
// See #49 (and above).
if (false === $dh) {
return false;
}
while (false !== ($filename = readdir($dh))) {
if (empty($filename)) {
continue;
}
if ($filename[0] === '.') {
continue;
}
$key = substr($filename, 0, strlen($filename) - 4);
if ($this->isOld($key, $config)) {
unlink($dir . '/' . $filename);
}
}
closedir($dh);
return true;
}
/**
* Generates the file path to the serial file corresponding to
* the configuration and definition name
* @param HTMLPurifier_Config $config
* @return string
* @todo Make protected
*/
public function generateFilePath($config)
{
$key = $this->generateKey($config);
return $this->generateDirectoryPath($config) . '/' . $key . '.ser';
}
/**
* Generates the path to the directory contain this cache's serial files
* @param HTMLPurifier_Config $config
* @return string
* @note No trailing slash
* @todo Make protected
*/
public function generateDirectoryPath($config)
{
$base = $this->generateBaseDirectoryPath($config);
return $base . '/' . $this->type;
}
/**
* Generates path to base directory that contains all definition type
* serials
* @param HTMLPurifier_Config $config
* @return mixed|string
* @todo Make protected
*/
public function generateBaseDirectoryPath($config)
{
$base = $config->get('Cache.SerializerPath');
$base = is_null($base) ? HTMLPURIFIER_PREFIX . '/HTMLPurifier/DefinitionCache/Serializer' : $base;
return $base;
}
/**
* Convenience wrapper function for file_put_contents
* @param string $file File name to write to
* @param string $data Data to write into file
* @param HTMLPurifier_Config $config
* @return int|bool Number of bytes written if success, or false if failure.
*/
private function _write($file, $data, $config)
{
$result = file_put_contents($file, $data);
if ($result !== false) {
// set permissions of the new file (no execute)
$chmod = $config->get('Cache.SerializerPermissions');
if ($chmod !== null) {
chmod($file, $chmod & 0666);
}
}
return $result;
}
/**
* Prepares the directory that this type stores the serials in
* @param HTMLPurifier_Config $config
* @return bool True if successful
*/
private function _prepareDir($config)
{
$directory = $this->generateDirectoryPath($config);
$chmod = $config->get('Cache.SerializerPermissions');
if ($chmod === null) {
// TODO: This races
if (is_dir($directory)) return true;
return mkdir($directory);
}
if (!is_dir($directory)) {
$base = $this->generateBaseDirectoryPath($config);
if (!is_dir($base)) {
trigger_error(
'Base directory ' . $base . ' does not exist,
please create or change using %Cache.SerializerPath',
E_USER_WARNING
);
return false;
} elseif (!$this->_testPermissions($base, $chmod)) {
return false;
}
if (!mkdir($directory, $chmod)) {
trigger_error(
'Could not create directory ' . $directory . '',
E_USER_WARNING
);
return false;
}
if (!$this->_testPermissions($directory, $chmod)) {
return false;
}
} elseif (!$this->_testPermissions($directory, $chmod)) {
return false;
}
return true;
}
/**
* Tests permissions on a directory and throws out friendly
* error messages and attempts to chmod it itself if possible
* @param string $dir Directory path
* @param int $chmod Permissions
* @return bool True if directory is writable
*/
private function _testPermissions($dir, $chmod)
{
// early abort, if it is writable, everything is hunky-dory
if (is_writable($dir)) {
return true;
}
if (!is_dir($dir)) {
// generally, you'll want to handle this beforehand
// so a more specific error message can be given
trigger_error(
'Directory ' . $dir . ' does not exist',
E_USER_WARNING
);
return false;
}
if (function_exists('posix_getuid') && $chmod !== null) {
// POSIX system, we can give more specific advice
if (fileowner($dir) === posix_getuid()) {
// we can chmod it ourselves
$chmod = $chmod | 0700;
if (chmod($dir, $chmod)) {
return true;
}
} elseif (filegroup($dir) === posix_getgid()) {
$chmod = $chmod | 0070;
} else {
// PHP's probably running as nobody, so we'll
// need to give global permissions
$chmod = $chmod | 0777;
}
trigger_error(
'Directory ' . $dir . ' not writable, ' .
'please chmod to ' . decoct($chmod),
E_USER_WARNING
);
} else {
// generic error message
trigger_error(
'Directory ' . $dir . ' not writable, ' .
'please alter file permissions',
E_USER_WARNING
);
}
return false;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/LanguageFactory.php 0000644 00000014732 14716425662 0017004 0 ustar 00 cache[$language_code][$key] = $value
* @type array
*/
public $cache;
/**
* Valid keys in the HTMLPurifier_Language object. Designates which
* variables to slurp out of a message file.
* @type array
*/
public $keys = array('fallback', 'messages', 'errorNames');
/**
* Instance to validate language codes.
* @type HTMLPurifier_AttrDef_Lang
*
*/
protected $validator;
/**
* Cached copy of dirname(__FILE__), directory of current file without
* trailing slash.
* @type string
*/
protected $dir;
/**
* Keys whose contents are a hash map and can be merged.
* @type array
*/
protected $mergeable_keys_map = array('messages' => true, 'errorNames' => true);
/**
* Keys whose contents are a list and can be merged.
* @value array lookup
*/
protected $mergeable_keys_list = array();
/**
* Retrieve sole instance of the factory.
* @param HTMLPurifier_LanguageFactory $prototype Optional prototype to overload sole instance with,
* or bool true to reset to default factory.
* @return HTMLPurifier_LanguageFactory
*/
public static function instance($prototype = null)
{
static $instance = null;
if ($prototype !== null) {
$instance = $prototype;
} elseif ($instance === null || $prototype == true) {
$instance = new HTMLPurifier_LanguageFactory();
$instance->setup();
}
return $instance;
}
/**
* Sets up the singleton, much like a constructor
* @note Prevents people from getting this outside of the singleton
*/
public function setup()
{
$this->validator = new HTMLPurifier_AttrDef_Lang();
$this->dir = HTMLPURIFIER_PREFIX . '/HTMLPurifier';
}
/**
* Creates a language object, handles class fallbacks
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @param bool|string $code Code to override configuration with. Private parameter.
* @return HTMLPurifier_Language
*/
public function create($config, $context, $code = false)
{
// validate language code
if ($code === false) {
$code = $this->validator->validate(
$config->get('Core.Language'),
$config,
$context
);
} else {
$code = $this->validator->validate($code, $config, $context);
}
if ($code === false) {
$code = 'en'; // malformed code becomes English
}
$pcode = str_replace('-', '_', $code); // make valid PHP classname
static $depth = 0; // recursion protection
if ($code == 'en') {
$lang = new HTMLPurifier_Language($config, $context);
} else {
$class = 'HTMLPurifier_Language_' . $pcode;
$file = $this->dir . '/Language/classes/' . $code . '.php';
if (file_exists($file) || class_exists($class, false)) {
$lang = new $class($config, $context);
} else {
// Go fallback
$raw_fallback = $this->getFallbackFor($code);
$fallback = $raw_fallback ? $raw_fallback : 'en';
$depth++;
$lang = $this->create($config, $context, $fallback);
if (!$raw_fallback) {
$lang->error = true;
}
$depth--;
}
}
$lang->code = $code;
return $lang;
}
/**
* Returns the fallback language for language
* @note Loads the original language into cache
* @param string $code language code
* @return string|bool
*/
public function getFallbackFor($code)
{
$this->loadLanguage($code);
return $this->cache[$code]['fallback'];
}
/**
* Loads language into the cache, handles message file and fallbacks
* @param string $code language code
*/
public function loadLanguage($code)
{
static $languages_seen = array(); // recursion guard
// abort if we've already loaded it
if (isset($this->cache[$code])) {
return;
}
// generate filename
$filename = $this->dir . '/Language/messages/' . $code . '.php';
// default fallback : may be overwritten by the ensuing include
$fallback = ($code != 'en') ? 'en' : false;
// load primary localisation
if (!file_exists($filename)) {
// skip the include: will rely solely on fallback
$filename = $this->dir . '/Language/messages/en.php';
$cache = array();
} else {
include $filename;
$cache = compact($this->keys);
}
// load fallback localisation
if (!empty($fallback)) {
// infinite recursion guard
if (isset($languages_seen[$code])) {
trigger_error(
'Circular fallback reference in language ' .
$code,
E_USER_ERROR
);
$fallback = 'en';
}
$language_seen[$code] = true;
// load the fallback recursively
$this->loadLanguage($fallback);
$fallback_cache = $this->cache[$fallback];
// merge fallback with current language
foreach ($this->keys as $key) {
if (isset($cache[$key]) && isset($fallback_cache[$key])) {
if (isset($this->mergeable_keys_map[$key])) {
$cache[$key] = $cache[$key] + $fallback_cache[$key];
} elseif (isset($this->mergeable_keys_list[$key])) {
$cache[$key] = array_merge($fallback_cache[$key], $cache[$key]);
}
} else {
$cache[$key] = $fallback_cache[$key];
}
}
}
// save to cache for later retrieval
$this->cache[$code] = $cache;
return;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/VarParserException.php 0000644 00000000235 14716425662 0017506 0 ustar 00 self::STRING,
'istring' => self::ISTRING,
'text' => self::TEXT,
'itext' => self::ITEXT,
'int' => self::INT,
'float' => self::FLOAT,
'bool' => self::BOOL,
'lookup' => self::LOOKUP,
'list' => self::ALIST,
'hash' => self::HASH,
'mixed' => self::MIXED
);
/**
* Lookup table of types that are string, and can have aliases or
* allowed value lists.
*/
public static $stringTypes = array(
self::STRING => true,
self::ISTRING => true,
self::TEXT => true,
self::ITEXT => true,
);
/**
* Validate a variable according to type.
* It may return NULL as a valid type if $allow_null is true.
*
* @param mixed $var Variable to validate
* @param int $type Type of variable, see HTMLPurifier_VarParser->types
* @param bool $allow_null Whether or not to permit null as a value
* @return string Validated and type-coerced variable
* @throws HTMLPurifier_VarParserException
*/
final public function parse($var, $type, $allow_null = false)
{
if (is_string($type)) {
if (!isset(HTMLPurifier_VarParser::$types[$type])) {
throw new HTMLPurifier_VarParserException("Invalid type '$type'");
} else {
$type = HTMLPurifier_VarParser::$types[$type];
}
}
$var = $this->parseImplementation($var, $type, $allow_null);
if ($allow_null && $var === null) {
return null;
}
// These are basic checks, to make sure nothing horribly wrong
// happened in our implementations.
switch ($type) {
case (self::STRING):
case (self::ISTRING):
case (self::TEXT):
case (self::ITEXT):
if (!is_string($var)) {
break;
}
if ($type == self::ISTRING || $type == self::ITEXT) {
$var = strtolower($var);
}
return $var;
case (self::INT):
if (!is_int($var)) {
break;
}
return $var;
case (self::FLOAT):
if (!is_float($var)) {
break;
}
return $var;
case (self::BOOL):
if (!is_bool($var)) {
break;
}
return $var;
case (self::LOOKUP):
case (self::ALIST):
case (self::HASH):
if (!is_array($var)) {
break;
}
if ($type === self::LOOKUP) {
foreach ($var as $k) {
if ($k !== true) {
$this->error('Lookup table contains value other than true');
}
}
} elseif ($type === self::ALIST) {
$keys = array_keys($var);
if (array_keys($keys) !== $keys) {
$this->error('Indices for list are not uniform');
}
}
return $var;
case (self::MIXED):
return $var;
default:
$this->errorInconsistent(get_class($this), $type);
}
$this->errorGeneric($var, $type);
}
/**
* Actually implements the parsing. Base implementation does not
* do anything to $var. Subclasses should overload this!
* @param mixed $var
* @param int $type
* @param bool $allow_null
* @return string
*/
protected function parseImplementation($var, $type, $allow_null)
{
return $var;
}
/**
* Throws an exception.
* @throws HTMLPurifier_VarParserException
*/
protected function error($msg)
{
throw new HTMLPurifier_VarParserException($msg);
}
/**
* Throws an inconsistency exception.
* @note This should not ever be called. It would be called if we
* extend the allowed values of HTMLPurifier_VarParser without
* updating subclasses.
* @param string $class
* @param int $type
* @throws HTMLPurifier_Exception
*/
protected function errorInconsistent($class, $type)
{
throw new HTMLPurifier_Exception(
"Inconsistency in $class: " . HTMLPurifier_VarParser::getTypeName($type) .
" not implemented"
);
}
/**
* Generic error for if a type didn't work.
* @param mixed $var
* @param int $type
*/
protected function errorGeneric($var, $type)
{
$vtype = gettype($var);
$this->error("Expected type " . HTMLPurifier_VarParser::getTypeName($type) . ", got $vtype");
}
/**
* @param int $type
* @return string
*/
public static function getTypeName($type)
{
static $lookup;
if (!$lookup) {
// Lazy load the alternative lookup table
$lookup = array_flip(HTMLPurifier_VarParser::$types);
}
if (!isset($lookup[$type])) {
return 'unknown';
}
return $lookup[$type];
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/PropertyList.php 0000644 00000005337 14716425662 0016412 0 ustar 00 parent = $parent;
}
/**
* Recursively retrieves the value for a key
* @param string $name
* @throws HTMLPurifier_Exception
*/
public function get($name)
{
if ($this->has($name)) {
return $this->data[$name];
}
// possible performance bottleneck, convert to iterative if necessary
if ($this->parent) {
return $this->parent->get($name);
}
throw new HTMLPurifier_Exception("Key '$name' not found");
}
/**
* Sets the value of a key, for this plist
* @param string $name
* @param mixed $value
*/
public function set($name, $value)
{
$this->data[$name] = $value;
}
/**
* Returns true if a given key exists
* @param string $name
* @return bool
*/
public function has($name)
{
return array_key_exists($name, $this->data);
}
/**
* Resets a value to the value of it's parent, usually the default. If
* no value is specified, the entire plist is reset.
* @param string $name
*/
public function reset($name = null)
{
if ($name == null) {
$this->data = array();
} else {
unset($this->data[$name]);
}
}
/**
* Squashes this property list and all of its property lists into a single
* array, and returns the array. This value is cached by default.
* @param bool $force If true, ignores the cache and regenerates the array.
* @return array
*/
public function squash($force = false)
{
if ($this->cache !== null && !$force) {
return $this->cache;
}
if ($this->parent) {
return $this->cache = array_merge($this->parent->squash($force), $this->data);
} else {
return $this->cache = $this->data;
}
}
/**
* Returns the parent plist.
* @return HTMLPurifier_PropertyList
*/
public function getParent()
{
return $this->parent;
}
/**
* Sets the parent plist.
* @param HTMLPurifier_PropertyList $plist Parent plist
*/
public function setParent($plist)
{
$this->parent = $plist;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/Definition.php 0000644 00000002521 14716425662 0016012 0 ustar 00 setup) {
return;
}
$this->setup = true;
$this->doSetup($config);
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/StringHashParser.php 0000644 00000007071 14716425662 0017156 0 ustar 00 'DefaultKeyValue',
* 'KEY' => 'Value',
* 'KEY2' => 'Value2',
* 'MULTILINE-KEY' => "Multiline\nvalue.\n",
* )
*
* We use this as an easy to use file-format for configuration schema
* files, but the class itself is usage agnostic.
*
* You can use ---- to forcibly terminate parsing of a single string-hash;
* this marker is used in multi string-hashes to delimit boundaries.
*/
class HTMLPurifier_StringHashParser
{
/**
* @type string
*/
public $default = 'ID';
/**
* Parses a file that contains a single string-hash.
* @param string $file
* @return array
*/
public function parseFile($file)
{
if (!file_exists($file)) {
return false;
}
$fh = fopen($file, 'r');
if (!$fh) {
return false;
}
$ret = $this->parseHandle($fh);
fclose($fh);
return $ret;
}
/**
* Parses a file that contains multiple string-hashes delimited by '----'
* @param string $file
* @return array
*/
public function parseMultiFile($file)
{
if (!file_exists($file)) {
return false;
}
$ret = array();
$fh = fopen($file, 'r');
if (!$fh) {
return false;
}
while (!feof($fh)) {
$ret[] = $this->parseHandle($fh);
}
fclose($fh);
return $ret;
}
/**
* Internal parser that acepts a file handle.
* @note While it's possible to simulate in-memory parsing by using
* custom stream wrappers, if such a use-case arises we should
* factor out the file handle into its own class.
* @param resource $fh File handle with pointer at start of valid string-hash
* block.
* @return array
*/
protected function parseHandle($fh)
{
$state = false;
$single = false;
$ret = array();
do {
$line = fgets($fh);
if ($line === false) {
break;
}
$line = rtrim($line, "\n\r");
if (!$state && $line === '') {
continue;
}
if ($line === '----') {
break;
}
if (strncmp('--#', $line, 3) === 0) {
// Comment
continue;
} elseif (strncmp('--', $line, 2) === 0) {
// Multiline declaration
$state = trim($line, '- ');
if (!isset($ret[$state])) {
$ret[$state] = '';
}
continue;
} elseif (!$state) {
$single = true;
if (strpos($line, ':') !== false) {
// Single-line declaration
list($state, $line) = explode(':', $line, 2);
$line = trim($line);
} else {
// Use default declaration
$state = $this->default;
}
}
if ($single) {
$ret[$state] = $line;
$single = false;
$state = false;
} else {
$ret[$state] .= "$line\n";
}
} while (!feof($fh));
return $ret;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/Printer.php 0000644 00000013411 14716425662 0015345 0 ustar 00 getAll();
$context = new HTMLPurifier_Context();
$this->generator = new HTMLPurifier_Generator($config, $context);
}
/**
* Main function that renders object or aspect of that object
* @note Parameters vary depending on printer
*/
// function render() {}
/**
* Returns a start tag
* @param string $tag Tag name
* @param array $attr Attribute array
* @return string
*/
protected function start($tag, $attr = array())
{
return $this->generator->generateFromToken(
new HTMLPurifier_Token_Start($tag, $attr ? $attr : array())
);
}
/**
* Returns an end tag
* @param string $tag Tag name
* @return string
*/
protected function end($tag)
{
return $this->generator->generateFromToken(
new HTMLPurifier_Token_End($tag)
);
}
/**
* Prints a complete element with content inside
* @param string $tag Tag name
* @param string $contents Element contents
* @param array $attr Tag attributes
* @param bool $escape whether or not to escape contents
* @return string
*/
protected function element($tag, $contents, $attr = array(), $escape = true)
{
return $this->start($tag, $attr) .
($escape ? $this->escape($contents) : $contents) .
$this->end($tag);
}
/**
* @param string $tag
* @param array $attr
* @return string
*/
protected function elementEmpty($tag, $attr = array())
{
return $this->generator->generateFromToken(
new HTMLPurifier_Token_Empty($tag, $attr)
);
}
/**
* @param string $text
* @return string
*/
protected function text($text)
{
return $this->generator->generateFromToken(
new HTMLPurifier_Token_Text($text)
);
}
/**
* Prints a simple key/value row in a table.
* @param string $name Key
* @param mixed $value Value
* @return string
*/
protected function row($name, $value)
{
if (is_bool($value)) {
$value = $value ? 'On' : 'Off';
}
return
$this->start('tr') . "\n" .
$this->element('th', $name) . "\n" .
$this->element('td', $value) . "\n" .
$this->end('tr');
}
/**
* Escapes a string for HTML output.
* @param string $string String to escape
* @return string
*/
protected function escape($string)
{
$string = HTMLPurifier_Encoder::cleanUTF8($string);
$string = htmlspecialchars($string, ENT_COMPAT, 'UTF-8');
return $string;
}
/**
* Takes a list of strings and turns them into a single list
* @param string[] $array List of strings
* @param bool $polite Bool whether or not to add an end before the last
* @return string
*/
protected function listify($array, $polite = false)
{
if (empty($array)) {
return 'None';
}
$ret = '';
$i = count($array);
foreach ($array as $value) {
$i--;
$ret .= $value;
if ($i > 0 && !($polite && $i == 1)) {
$ret .= ', ';
}
if ($polite && $i == 1) {
$ret .= 'and ';
}
}
return $ret;
}
/**
* Retrieves the class of an object without prefixes, as well as metadata
* @param object $obj Object to determine class of
* @param string $sec_prefix Further prefix to remove
* @return string
*/
protected function getClass($obj, $sec_prefix = '')
{
static $five = null;
if ($five === null) {
$five = version_compare(PHP_VERSION, '5', '>=');
}
$prefix = 'HTMLPurifier_' . $sec_prefix;
if (!$five) {
$prefix = strtolower($prefix);
}
$class = str_replace($prefix, '', get_class($obj));
$lclass = strtolower($class);
$class .= '(';
switch ($lclass) {
case 'enum':
$values = array();
foreach ($obj->valid_values as $value => $bool) {
$values[] = $value;
}
$class .= implode(', ', $values);
break;
case 'css_composite':
$values = array();
foreach ($obj->defs as $def) {
$values[] = $this->getClass($def, $sec_prefix);
}
$class .= implode(', ', $values);
break;
case 'css_multiple':
$class .= $this->getClass($obj->single, $sec_prefix) . ', ';
$class .= $obj->max;
break;
case 'css_denyelementdecorator':
$class .= $this->getClass($obj->def, $sec_prefix) . ', ';
$class .= $obj->element;
break;
case 'css_importantdecorator':
$class .= $this->getClass($obj->def, $sec_prefix);
if ($obj->allow) {
$class .= ', !important';
}
break;
}
$class .= ')';
return $class;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/HTMLModuleManager.php 0000644 00000037112 14716425662 0017133 0 ustar 00 attrTypes = new HTMLPurifier_AttrTypes();
$this->doctypes = new HTMLPurifier_DoctypeRegistry();
// setup basic modules
$common = array(
'CommonAttributes', 'Text', 'Hypertext', 'List',
'Presentation', 'Edit', 'Bdo', 'Tables', 'Image',
'StyleAttribute',
// Unsafe:
'Scripting', 'Object', 'Forms',
// Sorta legacy, but present in strict:
'Name',
);
$transitional = array('Legacy', 'Target', 'Iframe');
$xml = array('XMLCommonAttributes');
$non_xml = array('NonXMLCommonAttributes');
// setup basic doctypes
$this->doctypes->register(
'HTML 4.01 Transitional',
false,
array_merge($common, $transitional, $non_xml),
array('Tidy_Transitional', 'Tidy_Proprietary'),
array(),
'-//W3C//DTD HTML 4.01 Transitional//EN',
'http://www.w3.org/TR/html4/loose.dtd'
);
$this->doctypes->register(
'HTML 4.01 Strict',
false,
array_merge($common, $non_xml),
array('Tidy_Strict', 'Tidy_Proprietary', 'Tidy_Name'),
array(),
'-//W3C//DTD HTML 4.01//EN',
'http://www.w3.org/TR/html4/strict.dtd'
);
$this->doctypes->register(
'XHTML 1.0 Transitional',
true,
array_merge($common, $transitional, $xml, $non_xml),
array('Tidy_Transitional', 'Tidy_XHTML', 'Tidy_Proprietary', 'Tidy_Name'),
array(),
'-//W3C//DTD XHTML 1.0 Transitional//EN',
'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'
);
$this->doctypes->register(
'XHTML 1.0 Strict',
true,
array_merge($common, $xml, $non_xml),
array('Tidy_Strict', 'Tidy_XHTML', 'Tidy_Strict', 'Tidy_Proprietary', 'Tidy_Name'),
array(),
'-//W3C//DTD XHTML 1.0 Strict//EN',
'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'
);
$this->doctypes->register(
'XHTML 1.1',
true,
// Iframe is a real XHTML 1.1 module, despite being
// "transitional"!
array_merge($common, $xml, array('Ruby', 'Iframe')),
array('Tidy_Strict', 'Tidy_XHTML', 'Tidy_Proprietary', 'Tidy_Strict', 'Tidy_Name'), // Tidy_XHTML1_1
array(),
'-//W3C//DTD XHTML 1.1//EN',
'http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd'
);
}
/**
* Registers a module to the recognized module list, useful for
* overloading pre-existing modules.
* @param $module Mixed: string module name, with or without
* HTMLPurifier_HTMLModule prefix, or instance of
* subclass of HTMLPurifier_HTMLModule.
* @param $overload Boolean whether or not to overload previous modules.
* If this is not set, and you do overload a module,
* HTML Purifier will complain with a warning.
* @note This function will not call autoload, you must instantiate
* (and thus invoke) autoload outside the method.
* @note If a string is passed as a module name, different variants
* will be tested in this order:
* - Check for HTMLPurifier_HTMLModule_$name
* - Check all prefixes with $name in order they were added
* - Check for literal object name
* - Throw fatal error
* If your object name collides with an internal class, specify
* your module manually. All modules must have been included
* externally: registerModule will not perform inclusions for you!
*/
public function registerModule($module, $overload = false)
{
if (is_string($module)) {
// attempt to load the module
$original_module = $module;
$ok = false;
foreach ($this->prefixes as $prefix) {
$module = $prefix . $original_module;
if (class_exists($module)) {
$ok = true;
break;
}
}
if (!$ok) {
$module = $original_module;
if (!class_exists($module)) {
trigger_error(
$original_module . ' module does not exist',
E_USER_ERROR
);
return;
}
}
$module = new $module();
}
if (empty($module->name)) {
trigger_error('Module instance of ' . get_class($module) . ' must have name');
return;
}
if (!$overload && isset($this->registeredModules[$module->name])) {
trigger_error('Overloading ' . $module->name . ' without explicit overload parameter', E_USER_WARNING);
}
$this->registeredModules[$module->name] = $module;
}
/**
* Adds a module to the current doctype by first registering it,
* and then tacking it on to the active doctype
*/
public function addModule($module)
{
$this->registerModule($module);
if (is_object($module)) {
$module = $module->name;
}
$this->userModules[] = $module;
}
/**
* Adds a class prefix that registerModule() will use to resolve a
* string name to a concrete class
*/
public function addPrefix($prefix)
{
$this->prefixes[] = $prefix;
}
/**
* Performs processing on modules, after being called you may
* use getElement() and getElements()
* @param HTMLPurifier_Config $config
*/
public function setup($config)
{
$this->trusted = $config->get('HTML.Trusted');
// generate
$this->doctype = $this->doctypes->make($config);
$modules = $this->doctype->modules;
// take out the default modules that aren't allowed
$lookup = $config->get('HTML.AllowedModules');
$special_cases = $config->get('HTML.CoreModules');
if (is_array($lookup)) {
foreach ($modules as $k => $m) {
if (isset($special_cases[$m])) {
continue;
}
if (!isset($lookup[$m])) {
unset($modules[$k]);
}
}
}
// custom modules
if ($config->get('HTML.Proprietary')) {
$modules[] = 'Proprietary';
}
if ($config->get('HTML.SafeObject')) {
$modules[] = 'SafeObject';
}
if ($config->get('HTML.SafeEmbed')) {
$modules[] = 'SafeEmbed';
}
if ($config->get('HTML.SafeScripting') !== array()) {
$modules[] = 'SafeScripting';
}
if ($config->get('HTML.Nofollow')) {
$modules[] = 'Nofollow';
}
if ($config->get('HTML.TargetBlank')) {
$modules[] = 'TargetBlank';
}
// NB: HTML.TargetNoreferrer and HTML.TargetNoopener must be AFTER HTML.TargetBlank
// so that its post-attr-transform gets run afterwards.
if ($config->get('HTML.TargetNoreferrer')) {
$modules[] = 'TargetNoreferrer';
}
if ($config->get('HTML.TargetNoopener')) {
$modules[] = 'TargetNoopener';
}
// merge in custom modules
$modules = array_merge($modules, $this->userModules);
foreach ($modules as $module) {
$this->processModule($module);
$this->modules[$module]->setup($config);
}
foreach ($this->doctype->tidyModules as $module) {
$this->processModule($module);
$this->modules[$module]->setup($config);
}
// prepare any injectors
foreach ($this->modules as $module) {
$n = array();
foreach ($module->info_injector as $injector) {
if (!is_object($injector)) {
$class = "HTMLPurifier_Injector_$injector";
$injector = new $class;
}
$n[$injector->name] = $injector;
}
$module->info_injector = $n;
}
// setup lookup table based on all valid modules
foreach ($this->modules as $module) {
foreach ($module->info as $name => $def) {
if (!isset($this->elementLookup[$name])) {
$this->elementLookup[$name] = array();
}
$this->elementLookup[$name][] = $module->name;
}
}
// note the different choice
$this->contentSets = new HTMLPurifier_ContentSets(
// content set assembly deals with all possible modules,
// not just ones deemed to be "safe"
$this->modules
);
$this->attrCollections = new HTMLPurifier_AttrCollections(
$this->attrTypes,
// there is no way to directly disable a global attribute,
// but using AllowedAttributes or simply not including
// the module in your custom doctype should be sufficient
$this->modules
);
}
/**
* Takes a module and adds it to the active module collection,
* registering it if necessary.
*/
public function processModule($module)
{
if (!isset($this->registeredModules[$module]) || is_object($module)) {
$this->registerModule($module);
}
$this->modules[$module] = $this->registeredModules[$module];
}
/**
* Retrieves merged element definitions.
* @return Array of HTMLPurifier_ElementDef
*/
public function getElements()
{
$elements = array();
foreach ($this->modules as $module) {
if (!$this->trusted && !$module->safe) {
continue;
}
foreach ($module->info as $name => $v) {
if (isset($elements[$name])) {
continue;
}
$elements[$name] = $this->getElement($name);
}
}
// remove dud elements, this happens when an element that
// appeared to be safe actually wasn't
foreach ($elements as $n => $v) {
if ($v === false) {
unset($elements[$n]);
}
}
return $elements;
}
/**
* Retrieves a single merged element definition
* @param string $name Name of element
* @param bool $trusted Boolean trusted overriding parameter: set to true
* if you want the full version of an element
* @return HTMLPurifier_ElementDef Merged HTMLPurifier_ElementDef
* @note You may notice that modules are getting iterated over twice (once
* in getElements() and once here). This
* is because
*/
public function getElement($name, $trusted = null)
{
if (!isset($this->elementLookup[$name])) {
return false;
}
// setup global state variables
$def = false;
if ($trusted === null) {
$trusted = $this->trusted;
}
// iterate through each module that has registered itself to this
// element
foreach ($this->elementLookup[$name] as $module_name) {
$module = $this->modules[$module_name];
// refuse to create/merge from a module that is deemed unsafe--
// pretend the module doesn't exist--when trusted mode is not on.
if (!$trusted && !$module->safe) {
continue;
}
// clone is used because, ideally speaking, the original
// definition should not be modified. Usually, this will
// make no difference, but for consistency's sake
$new_def = clone $module->info[$name];
if (!$def && $new_def->standalone) {
$def = $new_def;
} elseif ($def) {
// This will occur even if $new_def is standalone. In practice,
// this will usually result in a full replacement.
$def->mergeIn($new_def);
} else {
// :TODO:
// non-standalone definitions that don't have a standalone
// to merge into could be deferred to the end
// HOWEVER, it is perfectly valid for a non-standalone
// definition to lack a standalone definition, even
// after all processing: this allows us to safely
// specify extra attributes for elements that may not be
// enabled all in one place. In particular, this might
// be the case for trusted elements. WARNING: care must
// be taken that the /extra/ definitions are all safe.
continue;
}
// attribute value expansions
$this->attrCollections->performInclusions($def->attr);
$this->attrCollections->expandIdentifiers($def->attr, $this->attrTypes);
// descendants_are_inline, for ChildDef_Chameleon
if (is_string($def->content_model) &&
strpos($def->content_model, 'Inline') !== false) {
if ($name != 'del' && $name != 'ins') {
// this is for you, ins/del
$def->descendants_are_inline = true;
}
}
$this->contentSets->generateChildDef($def, $module);
}
// This can occur if there is a blank definition, but no base to
// mix it in with
if (!$def) {
return false;
}
// add information on required attributes
foreach ($def->attr as $attr_name => $attr_def) {
if ($attr_def->required) {
$def->required_attr[] = $attr_name;
}
}
return $def;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/Queue.php 0000644 00000003017 14716425662 0015007 0 ustar 00 input = $input;
$this->output = array();
}
/**
* Shifts an element off the front of the queue.
*/
public function shift() {
if (empty($this->output)) {
$this->output = array_reverse($this->input);
$this->input = array();
}
if (empty($this->output)) {
return NULL;
}
return array_pop($this->output);
}
/**
* Pushes an element onto the front of the queue.
*/
public function push($x) {
array_push($this->input, $x);
}
/**
* Checks if it's empty.
*/
public function isEmpty() {
return empty($this->input) && empty($this->output);
}
}
htmlpurifier/library/HTMLPurifier/Node.php 0000644 00000002400 14716425662 0014603 0 ustar 00 General level of cleanliness the Tidy module should enforce.
There are four allowed values:
- none
- No extra tidying should be done
- light
- Only fix elements that would be discarded otherwise due to
lack of support in doctype
- medium
- Enforce best practices
- heavy
- Transform all deprecated elements and attributes to standards
compliant equivalents
--ALLOWED--
'none', 'light', 'medium', 'heavy'
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.AllowedProperties.txt 0000644 00000001140 14716425662 0023627 0 ustar 00 CSS.AllowedProperties
TYPE: lookup/null
VERSION: 3.1.0
DEFAULT: NULL
--DESCRIPTION--
If HTML Purifier's style attributes set is unsatisfactory for your needs,
you can overload it with your own list of tags to allow. Note that this
method is subtractive: it does its job by taking away from HTML Purifier
usual feature set, so you cannot add an attribute that HTML Purifier never
supported in the first place.
Warning: If another directive conflicts with the
elements here, that directive will win and override.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveEmpty.RemoveNbsp.txt 0000644 00000000701 14716425662 0026151 0 ustar 00 AutoFormat.RemoveEmpty.RemoveNbsp
TYPE: bool
VERSION: 4.0.0
DEFAULT: false
--DESCRIPTION--
When enabled, HTML Purifier will treat any elements that contain only
non-breaking spaces as well as regular whitespace as empty, and remove
them when %AutoForamt.RemoveEmpty is enabled.
See %AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions for a list of elements
that don't have this behavior applied to them.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.ColorKeywords.txt 0000644 00000001274 14716425662 0023241 0 ustar 00 Core.ColorKeywords
TYPE: hash
VERSION: 2.0.0
--DEFAULT--
array (
'maroon' => '#800000',
'red' => '#FF0000',
'orange' => '#FFA500',
'yellow' => '#FFFF00',
'olive' => '#808000',
'purple' => '#800080',
'fuchsia' => '#FF00FF',
'white' => '#FFFFFF',
'lime' => '#00FF00',
'green' => '#008000',
'navy' => '#000080',
'blue' => '#0000FF',
'aqua' => '#00FFFF',
'teal' => '#008080',
'black' => '#000000',
'silver' => '#C0C0C0',
'gray' => '#808080',
)
--DESCRIPTION--
Lookup array of color names to six digit hexadecimal number corresponding
to color, with preceding hash mark. Used when parsing colors. The lookup
is done in a case-insensitive manner.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.DefaultTextDir.txt 0000644 00000000446 14716425662 0023345 0 ustar 00 Attr.DefaultTextDir
TYPE: string
DEFAULT: 'ltr'
--DESCRIPTION--
Defines the default text direction (ltr or rtl) of the document being
parsed. This generally is the same as the value of the dir attribute in
HTML, or ltr if that is not specified.
--ALLOWED--
'ltr', 'rtl'
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.Proprietary.txt 0000644 00000000516 14716425662 0022625 0 ustar 00 HTML.Proprietary
TYPE: bool
VERSION: 3.1.0
DEFAULT: false
--DESCRIPTION--
Whether or not to allow proprietary elements and attributes in your
documents, as per HTMLPurifier_HTMLModule_Proprietary
.
Warning: This can cause your documents to stop
validating!
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Filter.ExtractStyleBlocks.Escaping.txt 0000644 00000000745 14716425662 0026313 0 ustar 00 Filter.ExtractStyleBlocks.Escaping
TYPE: bool
VERSION: 3.0.0
DEFAULT: true
ALIASES: Filter.ExtractStyleBlocksEscaping, FilterParam.ExtractStyleBlocksEscaping
--DESCRIPTION--
Whether or not to escape the dangerous characters <, > and &
as \3C, \3E and \26, respectively. This is can be safely set to false
if the contents of StyleBlocks will be placed in an external stylesheet,
where there is no risk of it being interpreted as HTML.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.AllowedRel.txt 0000644 00000000440 14716425662 0022501 0 ustar 00 Attr.AllowedRel
TYPE: lookup
VERSION: 1.6.0
DEFAULT: array()
--DESCRIPTION--
List of allowed forward document relationships in the rel attribute. Common
values may be nofollow or print. By default, this is empty, meaning that no
document relationships are allowed.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Output.FixInnerHTML.txt 0000644 00000001037 14716425662 0023247 0 ustar 00 Output.FixInnerHTML
TYPE: bool
VERSION: 4.3.0
DEFAULT: true
--DESCRIPTION--
If true, HTML Purifier will protect against Internet Explorer's
mishandling of the innerHTML
attribute by appending
a space to any attribute that does not contain angled brackets, spaces
or quotes, but contains a backtick. This slightly changes the
semantics of any given attribute, so if this is unacceptable and
you do not use innerHTML
on any of your pages, you can
turn this directive off.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Output.SortAttr.txt 0000644 00000000775 14716425662 0022632 0 ustar 00 Output.SortAttr
TYPE: bool
VERSION: 3.2.0
DEFAULT: false
--DESCRIPTION--
If true, HTML Purifier will sort attributes by name before writing them back
to the document, converting a tag like: <el b="" a="" c="" />
to <el a="" b="" c="" />
. This is a workaround for
a bug in FCKeditor which causes it to swap attributes order, adding noise
to text diffs. If you're not seeing this bug, chances are, you don't need
this directive.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.AllowedFrameTargets.txt 0000644 00000001102 14716425662 0024337 0 ustar 00 Attr.AllowedFrameTargets
TYPE: lookup
DEFAULT: array()
--DESCRIPTION--
Lookup table of all allowed link frame targets. Some commonly used link
targets include _blank, _self, _parent and _top. Values should be
lowercase, as validation will be done in a case-sensitive manner despite
W3C's recommendation. XHTML 1.0 Strict does not permit the target attribute
so this directive will have no effect in that doctype. XHTML 1.1 does not
enable the Target module by default, you will have to manually enable it
(see the module documentation for more details.)
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.AllowedClasses.txt 0000644 00000000336 14716425662 0023360 0 ustar 00 Attr.AllowedClasses
TYPE: lookup/null
VERSION: 4.0.0
DEFAULT: null
--DESCRIPTION--
List of allowed class values in the class attribute. By default, this is null,
which means all classes are allowed.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Filter.ExtractStyleBlocks.txt 0000644 00000005306 14716425662 0024561 0 ustar 00 Filter.ExtractStyleBlocks
TYPE: bool
VERSION: 3.1.0
DEFAULT: false
EXTERNAL: CSSTidy
--DESCRIPTION--
This directive turns on the style block extraction filter, which removes
style
blocks from input HTML, cleans them up with CSSTidy,
and places them in the StyleBlocks
context variable, for further
use by you, usually to be placed in an external stylesheet, or a
style
block in the head
of your document.
Sample usage:
';
?>
Filter.ExtractStyleBlocks
body {color:#F00;} Some text';
$config = HTMLPurifier_Config::createDefault();
$config->set('Filter', 'ExtractStyleBlocks', true);
$purifier = new HTMLPurifier($config);
$html = $purifier->purify($dirty);
// This implementation writes the stylesheets to the styles/ directory.
// You can also echo the styles inside the document, but it's a bit
// more difficult to make sure they get interpreted properly by
// browsers; try the usual CSS armoring techniques.
$styles = $purifier->context->get('StyleBlocks');
$dir = 'styles/';
if (!is_dir($dir)) mkdir($dir);
$hash = sha1($_GET['html']);
foreach ($styles as $i => $style) {
file_put_contents($name = $dir . $hash . "_$i");
echo '';
}
?>
]]>
Warning: It is possible for a user to mount an
imagecrash attack using this CSS. Counter-measures are difficult;
it is not simply enough to limit the range of CSS lengths (using
relative lengths with many nesting levels allows for large values
to be attained without actually specifying them in the stylesheet),
and the flexible nature of selectors makes it difficult to selectively
disable lengths on image tags (HTML Purifier, however, does disable
CSS width and height in inline styling). There are probably two effective
counter measures: an explicit width and height set to auto in all
images in your document (unlikely) or the disabling of width and
height (somewhat reasonable). Whether or not these measures should be
used is left to the reader.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.LegacyEntityDecoder.txt 0000644 00000002557 14716425662 0024327 0 ustar 00 Core.LegacyEntityDecoder
TYPE: bool
VERSION: 4.9.0
DEFAULT: false
--DESCRIPTION--
Prior to HTML Purifier 4.9.0, entities were decoded by performing
a global search replace for all entities whose decoded versions
did not have special meanings under HTML, and replaced them with
their decoded versions. We would match all entities, even if they did
not have a trailing semicolon, but only if there weren't any trailing
alphanumeric characters.
Original | Text | Attribute |
¥ | ¥ | ¥ |
¥ | ¥ | ¥ |
¥a | ¥a | ¥a |
¥= | ¥= | ¥= |
In HTML Purifier 4.9.0, we changed the behavior of entity parsing
to match entities that had missing trailing semicolons in less
cases, to more closely match HTML5 parsing behavior:
Original | Text | Attribute |
¥ | ¥ | ¥ |
¥ | ¥ | ¥ |
¥a | ¥a | ¥a |
¥= | ¥= | ¥= |
This flag reverts back to pre-HTML Purifier 4.9.0 behavior.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.IDPrefixLocal.txt 0000644 00000001224 14716425662 0023075 0 ustar 00 Attr.IDPrefixLocal
TYPE: string
VERSION: 1.2.0
DEFAULT: ''
--DESCRIPTION--
Temporary prefix for IDs used in conjunction with %Attr.IDPrefix. If you
need to allow multiple sets of user content on web page, you may need to
have a seperate prefix that changes with each iteration. This way,
seperately submitted user content displayed on the same page doesn't
clobber each other. Ideal values are unique identifiers for the content it
represents (i.e. the id of the row in the database). Be sure to add a
seperator (like an underscore) at the end. Warning: this directive will
not work unless %Attr.IDPrefix is set to a non-empty value!
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.AggressivelyRemoveScript.txt 0000644 00000001075 14716425662 0025441 0 ustar 00 Core.AggressivelyRemoveScript
TYPE: bool
VERSION: 4.9.0
DEFAULT: true
--DESCRIPTION--
This directive enables aggressive pre-filter removal of
script tags. This is not necessary for security,
but it can help work around a bug in libxml where embedded
HTML elements inside script sections cause the parser to
choke. To revert to pre-4.9.0 behavior, set this to false.
This directive has no effect if %Core.Trusted is true,
%Core.RemoveScriptContents is false, or %Core.HiddenElements
does not contain script.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.CustomDoctype.txt 0000644 00000000351 14716425662 0023104 0 ustar 00 HTML.CustomDoctype
TYPE: string/null
VERSION: 2.0.1
DEFAULT: NULL
--DESCRIPTION--
A custom doctype for power-users who defined their own document
type. This directive only applies when %HTML.Doctype is blank.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.AllowedAttributes.txt 0000644 00000001137 14716425662 0023743 0 ustar 00 HTML.AllowedAttributes
TYPE: lookup/null
VERSION: 1.3.0
DEFAULT: NULL
--DESCRIPTION--
If HTML Purifier's attribute set is unsatisfactory, overload it!
The syntax is "tag.attr" or "*.attr" for the global attributes
(style, id, class, dir, lang, xml:lang).
Warning: If another directive conflicts with the
elements here, that directive will win and override. For
example, %HTML.EnableAttrID will take precedence over *.id in this
directive. You must set that directive to true before you can use
IDs at all.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.RemoveScriptContents.txt 0000644 00000000430 14716425662 0024564 0 ustar 00 Core.RemoveScriptContents
TYPE: bool/null
DEFAULT: NULL
VERSION: 2.0.0
DEPRECATED-VERSION: 2.1.0
DEPRECATED-USE: Core.HiddenElements
--DESCRIPTION--
This directive enables HTML Purifier to remove not only script tags
but all of their contents.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.AggressivelyFixLt.txt 0000644 00000001226 14716425662 0024043 0 ustar 00 Core.AggressivelyFixLt
TYPE: bool
VERSION: 2.1.0
DEFAULT: true
--DESCRIPTION--
This directive enables aggressive pre-filter fixes HTML Purifier can
perform in order to ensure that open angled-brackets do not get killed
during parsing stage. Enabling this will result in two preg_replace_callback
calls and at least two preg_replace calls for every HTML document parsed;
if your users make very well-formed HTML, you can set this directive false.
This has no effect when DirectLex is used.
Notice: This directive's default turned from false to true
in HTML Purifier 3.2.0.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.AllowedElements.txt 0000644 00000001562 14716425662 0023373 0 ustar 00 HTML.AllowedElements
TYPE: lookup/null
VERSION: 1.3.0
DEFAULT: NULL
--DESCRIPTION--
If HTML Purifier's tag set is unsatisfactory for your needs, you can
overload it with your own list of tags to allow. If you change
this, you probably also want to change %HTML.AllowedAttributes; see
also %HTML.Allowed which lets you set allowed elements and
attributes at the same time.
If you attempt to allow an element that HTML Purifier does not know
about, HTML Purifier will raise an error. You will need to manually
tell HTML Purifier about this element by using the
advanced customization features.
Warning: If another directive conflicts with the
elements here, that directive will win and override.
--# vim: et sw=4 sts=4
library/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions.txt 0000644 00000000554 14716425662 0030220 0 ustar 00 htmlpurifier AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions
TYPE: lookup
VERSION: 4.0.0
DEFAULT: array('td' => true, 'th' => true)
--DESCRIPTION--
When %AutoFormat.RemoveEmpty and %AutoFormat.RemoveEmpty.RemoveNbsp
are enabled, this directive defines what HTML elements should not be
removede if they have only a non-breaking space in them.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.AutoParagraph.txt 0000644 00000002162 14716425662 0024357 0 ustar 00 AutoFormat.AutoParagraph
TYPE: bool
VERSION: 2.0.1
DEFAULT: false
--DESCRIPTION--
This directive turns on auto-paragraphing, where double newlines are
converted in to paragraphs whenever possible. Auto-paragraphing:
- Always applies to inline elements or text in the root node,
- Applies to inline elements or text with double newlines in nodes
that allow paragraph tags,
- Applies to double newlines in paragraph tags
p
tags must be allowed for this directive to take effect.
We do not use br
tags for paragraphing, as that is
semantically incorrect.
To prevent auto-paragraphing as a content-producer, refrain from using
double-newlines except to specify a new paragraph or in contexts where
it has special meaning (whitespace usually has no meaning except in
tags like pre
, so this should not be difficult.) To prevent
the paragraphing of inline text adjacent to block elements, wrap them
in div
tags (the behavior is slightly different outside of
the root node.)
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveSpansWithoutAttributes.txt 0000644 00000000447 14716425662 0027522 0 ustar 00 AutoFormat.RemoveSpansWithoutAttributes
TYPE: bool
VERSION: 4.0.1
DEFAULT: false
--DESCRIPTION--
This directive causes span
tags without any attributes
to be removed. It will also remove spans that had all attributes
removed during processing.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.OverrideAllowedSchemes.txt 0000644 00000000506 14716425662 0024576 0 ustar 00 URI.OverrideAllowedSchemes
TYPE: bool
DEFAULT: true
--DESCRIPTION--
If this is set to true (which it is by default), you can override
%URI.AllowedSchemes by simply registering a HTMLPurifier_URIScheme to the
registry. If false, you will also have to update that directive in order
to add more schemes.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.MakeAbsolute.txt 0000644 00000000606 14716425662 0022554 0 ustar 00 URI.MakeAbsolute
TYPE: bool
VERSION: 2.1.0
DEFAULT: false
--DESCRIPTION--
Converts all URIs into absolute forms. This is useful when the HTML
being filtered assumes a specific base path, but will actually be
viewed in a different context (and setting an alternate base URI is
not possible). %URI.Base must be set for this directive to work.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.Proprietary.txt 0000644 00000000244 14716425662 0022507 0 ustar 00 CSS.Proprietary
TYPE: bool
VERSION: 3.0.0
DEFAULT: false
--DESCRIPTION--
Whether or not to allow safe, proprietary CSS values.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Output.CommentScriptContents.txt 0000644 00000000423 14716425662 0025343 0 ustar 00 Output.CommentScriptContents
TYPE: bool
VERSION: 2.0.0
DEFAULT: true
--DESCRIPTION--
Determines whether or not HTML Purifier should attempt to fix up the
contents of script tags for legacy browsers with comments.
--ALIASES--
Core.CommentScriptContents
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.Trusted.txt 0000644 00000000373 14716425662 0021624 0 ustar 00 CSS.Trusted
TYPE: bool
VERSION: 4.2.1
DEFAULT: false
--DESCRIPTION--
Indicates whether or not the user's CSS input is trusted or not. If the
input is trusted, a more expansive set of allowed properties. See
also %HTML.Trusted.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.TargetBlank.txt 0000644 00000000375 14716425662 0022506 0 ustar 00 HTML.TargetBlank
TYPE: bool
VERSION: 4.4.0
DEFAULT: FALSE
--DESCRIPTION--
If enabled, target=blank
attributes are added to all outgoing links.
(This includes links from an HTTPS version of a page to an HTTP version.)
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.Strict.txt 0000644 00000000335 14716425662 0021554 0 ustar 00 HTML.Strict
TYPE: bool
VERSION: 1.3.0
DEFAULT: false
DEPRECATED-VERSION: 1.7.0
DEPRECATED-USE: HTML.Doctype
--DESCRIPTION--
Determines whether or not to use Transitional (loose) or Strict rulesets.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveEmpty.txt 0000644 00000003356 14716425662 0024103 0 ustar 00 AutoFormat.RemoveEmpty
TYPE: bool
VERSION: 3.2.0
DEFAULT: false
--DESCRIPTION--
When enabled, HTML Purifier will attempt to remove empty elements that
contribute no semantic information to the document. The following types
of nodes will be removed:
-
Tags with no attributes and no content, and that are not empty
elements (remove
<a></a>
but not
<br />
), and
-
Tags with no content, except for:
- The
colgroup
element, or
-
Elements with the
id
or name
attribute,
when those attributes are permitted on those elements.
Please be very careful when using this functionality; while it may not
seem that empty elements contain useful information, they can alter the
layout of a document given appropriate styling. This directive is most
useful when you are processing machine-generated HTML, please avoid using
it on regular user HTML.
Elements that contain only whitespace will be treated as empty. Non-breaking
spaces, however, do not count as whitespace. See
%AutoFormat.RemoveEmpty.RemoveNbsp for alternate behavior.
This algorithm is not perfect; you may still notice some empty tags,
particularly if a node had elements, but those elements were later removed
because they were not permitted in that context, or tags that, after
being auto-closed by another tag, where empty. This is for safety reasons
to prevent clever code from breaking validation. The general rule of thumb:
if a tag looked empty on the way in, it will get removed; if HTML Purifier
made it empty, it will stay.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.Trusted.txt 0000644 00000000412 14716425662 0021732 0 ustar 00 HTML.Trusted
TYPE: bool
VERSION: 2.0.0
DEFAULT: false
--DESCRIPTION--
Indicates whether or not the user input is trusted or not. If the input is
trusted, a more expansive set of allowed tags and attributes will be used.
See also %CSS.Trusted.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.DefinitionRev.txt 0000644 00000001025 14716425662 0023046 0 ustar 00 HTML.DefinitionRev
TYPE: int
VERSION: 2.0.0
DEFAULT: 1
--DESCRIPTION--
Revision identifier for your custom definition specified in
%HTML.DefinitionID. This serves the same purpose: uniquely identifying
your custom definition, but this one does so in a chronological
context: revision 3 is more up-to-date then revision 2. Thus, when
this gets incremented, the cache handling is smart enough to clean
up any older revisions of your definition as well as flush the
cache.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.ConvertDocumentToFragment.txt 0000644 00000000661 14716425662 0025540 0 ustar 00 Core.ConvertDocumentToFragment
TYPE: bool
DEFAULT: true
--DESCRIPTION--
This parameter determines whether or not the filter should convert
input that is a full document with html and body tags to a fragment
of just the contents of a body tag. This parameter is simply something
HTML Purifier can do during an edge-case: for most inputs, this
processing is not necessary.
--ALIASES--
Core.AcceptFullDocuments
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/info.ini 0000644 00000000055 14716425662 0020433 0 ustar 00 name = "HTML Purifier"
; vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.Custom.txt 0000644 00000000455 14716425662 0023076 0 ustar 00 AutoFormat.Custom
TYPE: list
VERSION: 2.0.1
DEFAULT: array()
--DESCRIPTION--
This directive can be used to add custom auto-format injectors.
Specify an array of injector names (class name minus the prefix)
or concrete implementations. Injector class must exist.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.CollectErrors.txt 0000644 00000000661 14716425662 0023214 0 ustar 00 Core.CollectErrors
TYPE: bool
VERSION: 2.0.0
DEFAULT: false
--DESCRIPTION--
Whether or not to collect errors found while filtering the document. This
is a useful way to give feedback to your users. Warning:
Currently this feature is very patchy and experimental, with lots of
possible error messages not yet implemented. It will not cause any
problems, but it may not help your users either.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.Doctype.txt 0000644 00000000731 14716425662 0021713 0 ustar 00 HTML.Doctype
TYPE: string/null
DEFAULT: NULL
--DESCRIPTION--
Doctype to use during filtering. Technically speaking this is not actually
a doctype (as it does not identify a corresponding DTD), but we are using
this name for sake of simplicity. When non-blank, this will override any
older directives like %HTML.XHTML or %HTML.Strict.
--ALLOWED--
'HTML 4.01 Transitional', 'HTML 4.01 Strict', 'XHTML 1.0 Transitional', 'XHTML 1.0 Strict', 'XHTML 1.1'
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Output.FlashCompat.txt 0000644 00000000415 14716425662 0023240 0 ustar 00 Output.FlashCompat
TYPE: bool
VERSION: 4.1.0
DEFAULT: false
--DESCRIPTION--
If true, HTML Purifier will generate Internet Explorer compatibility
code for all object code. This is highly recommended if you enable
%HTML.SafeObject.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.Linkify.txt 0000644 00000000413 14716425662 0023223 0 ustar 00 AutoFormat.Linkify
TYPE: bool
VERSION: 2.0.1
DEFAULT: false
--DESCRIPTION--
This directive turns on linkification, auto-linking http, ftp and
https URLs. a
tags with the href
attribute
must be allowed.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Filter.ExtractStyleBlocks.Scope.txt 0000644 00000002260 14716425662 0025625 0 ustar 00 Filter.ExtractStyleBlocks.Scope
TYPE: string/null
VERSION: 3.0.0
DEFAULT: NULL
ALIASES: Filter.ExtractStyleBlocksScope, FilterParam.ExtractStyleBlocksScope
--DESCRIPTION--
If you would like users to be able to define external stylesheets, but
only allow them to specify CSS declarations for a specific node and
prevent them from fiddling with other elements, use this directive.
It accepts any valid CSS selector, and will prepend this to any
CSS declaration extracted from the document. For example, if this
directive is set to #user-content
and a user uses the
selector a:hover
, the final selector will be
#user-content a:hover
.
The comma shorthand may be used; consider the above example, with
#user-content, #user-content2
, the final selector will
be #user-content a:hover, #user-content2 a:hover
.
Warning: It is possible for users to bypass this measure
using a naughty + selector. This is a bug in CSS Tidy 1.3, not HTML
Purifier, and I am working to get it fixed. Until then, HTML Purifier
performs a basic check to prevent this.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.DefinitionID.txt 0000644 00000000362 14716425662 0022504 0 ustar 00 URI.DefinitionID
TYPE: string/null
VERSION: 2.1.0
DEFAULT: NULL
--DESCRIPTION--
Unique identifier for a custom-built URI definition. If you want
to add custom URIFilters, you must specify this value.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.SafeEmbed.txt 0000644 00000000743 14716425662 0022122 0 ustar 00 HTML.SafeEmbed
TYPE: bool
VERSION: 3.1.1
DEFAULT: false
--DESCRIPTION--
Whether or not to permit embed tags in documents, with a number of extra
security features added to prevent script execution. This is similar to
what websites like MySpace do to embed tags. Embed is a proprietary
element and will cause your website to stop validating; you should
see if you can use %Output.FlashCompat with %HTML.SafeObject instead
first.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.DirectLexLineNumberSyncInterval.txt 0000644 00000001170 14716425662 0026634 0 ustar 00 Core.DirectLexLineNumberSyncInterval
TYPE: int
VERSION: 2.0.0
DEFAULT: 0
--DESCRIPTION--
Specifies the number of tokens the DirectLex line number tracking
implementations should process before attempting to resyncronize the
current line count by manually counting all previous new-lines. When
at 0, this functionality is disabled. Lower values will decrease
performance, and this is only strictly necessary if the counting
algorithm is buggy (in which case you should report it as a bug).
This has no effect when %Core.MaintainLineNumbers is disabled or DirectLex is
not being used.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.DefinitionRev.txt 0000644 00000000304 14716425662 0022740 0 ustar 00 URI.DefinitionRev
TYPE: int
VERSION: 2.1.0
DEFAULT: 1
--DESCRIPTION--
Revision identifier for your custom definition. See
%HTML.DefinitionRev for details.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveEmpty.Predicate.txt 0000644 00000001170 14716425662 0025772 0 ustar 00 AutoFormat.RemoveEmpty.Predicate
TYPE: hash
VERSION: 4.7.0
DEFAULT: array('colgroup' => array(), 'th' => array(), 'td' => array(), 'iframe' => array('src'))
--DESCRIPTION--
Given that an element has no contents, it will be removed by default, unless
this predicate dictates otherwise. The predicate can either be an associative
map from tag name to list of attributes that must be present for the element
to be considered preserved: thus, the default always preserves colgroup
,
th
and td
, and also iframe
if it
has a src
.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.DefaultScheme.txt 0000644 00000000624 14716425662 0022711 0 ustar 00 URI.DefaultScheme
TYPE: string/null
DEFAULT: 'http'
--DESCRIPTION--
Defines through what scheme the output will be served, in order to
select the proper object validator when no scheme information is present.
Starting with HTML Purifier 4.9.0, the default scheme can be null, in
which case we reject all URIs which do not have explicit schemes.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.SafeIframeRegexp.txt 0000644 00000001601 14716425662 0023351 0 ustar 00 URI.SafeIframeRegexp
TYPE: string/null
VERSION: 4.4.0
DEFAULT: NULL
--DESCRIPTION--
A PCRE regular expression that will be matched against an iframe URI. This is
a relatively inflexible scheme, but works well enough for the most common
use-case of iframes: embedded video. This directive only has an effect if
%HTML.SafeIframe is enabled. Here are some example values:
%^http://www.youtube.com/embed/%
- Allow YouTube videos
%^http://player.vimeo.com/video/%
- Allow Vimeo videos
%^http://(www.youtube.com/embed/|player.vimeo.com/video/)%
- Allow both
Note that this directive does not give you enough granularity to, say, disable
all autoplay
videos. Pipe up on the HTML Purifier forums if this
is a capability you want.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.ForbiddenProperties.txt 0000644 00000000717 14716425662 0024145 0 ustar 00 CSS.ForbiddenProperties
TYPE: lookup
VERSION: 4.2.0
DEFAULT: array()
--DESCRIPTION--
This is the logical inverse of %CSS.AllowedProperties, and it will
override that directive or any other directive. If possible,
%CSS.AllowedProperties is recommended over this directive,
because it can sometimes be difficult to tell whether or not you've
forbidden all of the CSS properties you truly would like to disallow.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.MaintainLineNumbers.txt 0000644 00000001054 14716425662 0024333 0 ustar 00 Core.MaintainLineNumbers
TYPE: bool/null
VERSION: 2.0.0
DEFAULT: NULL
--DESCRIPTION--
If true, HTML Purifier will add line number information to all tokens.
This is useful when error reporting is turned on, but can result in
significant performance degradation and should not be used when
unnecessary. This directive must be used with the DirectLex lexer,
as the DOMLex lexer does not (yet) support this functionality.
If the value is null, an appropriate value will be selected based
on other configuration.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Test.ForceNoIconv.txt 0000644 00000000305 14716425662 0023006 0 ustar 00 Test.ForceNoIconv
TYPE: bool
DEFAULT: false
--DESCRIPTION--
When set to true, HTMLPurifier_Encoder will act as if iconv does not exist
and use only pure PHP implementations.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.Munge.txt 0000644 00000005307 14716425662 0021256 0 ustar 00 URI.Munge
TYPE: string/null
VERSION: 1.3.0
DEFAULT: NULL
--DESCRIPTION--
Munges all browsable (usually http, https and ftp)
absolute URIs into another URI, usually a URI redirection service.
This directive accepts a URI, formatted with a %s
where
the url-encoded original URI should be inserted (sample:
http://www.google.com/url?q=%s
).
Uses for this directive:
-
Prevent PageRank leaks, while being fairly transparent
to users (you may also want to add some client side JavaScript to
override the text in the statusbar). Notice:
Many security experts believe that this form of protection does not deter spam-bots.
-
Redirect users to a splash page telling them they are leaving your
website. While this is poor usability practice, it is often mandated
in corporate environments.
Prior to HTML Purifier 3.1.1, this directive also enabled the munging
of browsable external resources, which could break things if your redirection
script was a splash page or used meta
tags. To revert to
previous behavior, please use %URI.MungeResources.
You may want to also use %URI.MungeSecretKey along with this directive
in order to enforce what URIs your redirector script allows. Open
redirector scripts can be a security risk and negatively affect the
reputation of your domain name.
Starting with HTML Purifier 3.1.1, there is also these substitutions:
Key |
Description |
Example <a href=""> |
%r |
1 - The URI embeds a resource (blank) - The URI is merely a link |
|
%n |
The name of the tag this URI came from |
a |
%m |
The name of the attribute this URI came from |
href |
%p |
The name of the CSS property this URI came from, or blank if irrelevant |
|
Admittedly, these letters are somewhat arbitrary; the only stipulation
was that they couldn't be a through f. r is for resource (I would have preferred
e, but you take what you can get), n is for name, m
was picked because it came after n (and I couldn't use a), p is for
property.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Filter.YouTube.txt 0000644 00000000757 14716425662 0022371 0 ustar 00 Filter.YouTube
TYPE: bool
VERSION: 3.1.0
DEFAULT: false
--DESCRIPTION--
Warning: Deprecated in favor of %HTML.SafeObject and
%Output.FlashCompat (turn both on to allow YouTube videos and other
Flash content).
This directive enables YouTube video embedding in HTML Purifier. Check
this document
on embedding videos for more information on what this filter does.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.Host.txt 0000644 00000001462 14716425662 0021116 0 ustar 00 URI.Host
TYPE: string/null
VERSION: 1.2.0
DEFAULT: NULL
--DESCRIPTION--
Defines the domain name of the server, so we can determine whether or
an absolute URI is from your website or not. Not strictly necessary,
as users should be using relative URIs to reference resources on your
website. It will, however, let you use absolute URIs to link to
subdomains of the domain you post here: i.e. example.com will allow
sub.example.com. However, higher up domains will still be excluded:
if you set %URI.Host to sub.example.com, example.com will be blocked.
Note: This directive overrides %URI.Base because
a given page may be on a sub-domain, but you wish HTML Purifier to be
more relaxed and allow some of the parent domains too.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.DefaultImageAlt.txt 0000644 00000000737 14716425662 0023450 0 ustar 00 Attr.DefaultImageAlt
TYPE: string/null
DEFAULT: null
VERSION: 3.2.0
--DESCRIPTION--
This is the content of the alt tag of an image if the user had not
previously specified an alt attribute. This applies to all images without
a valid alt attribute, as opposed to %Attr.DefaultInvalidImageAlt, which
only applies to invalid images, and overrides in the case of an invalid image.
Default behavior with null is to use the basename of the src tag for the alt.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.PurifierLinkify.DocURL.txt 0000644 00000000506 14716425662 0026023 0 ustar 00 AutoFormat.PurifierLinkify.DocURL
TYPE: string
VERSION: 2.0.1
DEFAULT: '#%s'
ALIASES: AutoFormatParam.PurifierLinkifyDocURL
--DESCRIPTION--
Location of configuration documentation to link to, let %s substitute
into the configuration's namespace and directive names sans the percent
sign.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.AllowHostnameUnderscore.txt 0000644 00000001077 14716425662 0025243 0 ustar 00 Core.AllowHostnameUnderscore
TYPE: bool
VERSION: 4.6.0
DEFAULT: false
--DESCRIPTION--
By RFC 1123, underscores are not permitted in host names.
(This is in contrast to the specification for DNS, RFC
2181, which allows underscores.)
However, most browsers do the right thing when faced with
an underscore in the host name, and so some poorly written
websites are written with the expectation this should work.
Setting this parameter to true relaxes our allowed character
check so that underscores are permitted.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.SafeScripting.txt 0000644 00000000421 14716425662 0023041 0 ustar 00 HTML.SafeScripting
TYPE: lookup
VERSION: 4.5.0
DEFAULT: array()
--DESCRIPTION--
Whether or not to permit script tags to external scripts in documents.
Inline scripting is not allowed, and the script must match an explicit whitelist.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.DisplayLinkURI.txt 0000644 00000000475 14716425662 0024431 0 ustar 00 AutoFormat.DisplayLinkURI
TYPE: bool
VERSION: 3.2.0
DEFAULT: false
--DESCRIPTION--
This directive turns on the in-text display of URIs in <a> tags, and disables
those links. For example, example becomes
example (http://example.com).
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.DefaultInvalidImage.txt 0000644 00000000500 14716425662 0024302 0 ustar 00 Attr.DefaultInvalidImage
TYPE: string
DEFAULT: ''
--DESCRIPTION--
This is the default image an img tag will be pointed to if it does not have
a valid src attribute. In future versions, we may allow the image tag to
be removed completely, but due to design issues, this is not possible right
now.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.ForbiddenAttributes.txt 0000644 00000001524 14716425662 0024250 0 ustar 00 HTML.ForbiddenAttributes
TYPE: lookup
VERSION: 3.1.0
DEFAULT: array()
--DESCRIPTION--
While this directive is similar to %HTML.AllowedAttributes, for
forwards-compatibility with XML, this attribute has a different syntax. Instead of
tag.attr
, use tag@attr
. To disallow href
attributes in a
tags, set this directive to
a@href
. You can also disallow an attribute globally with
attr
or *@attr
(either syntax is fine; the latter
is provided for consistency with %HTML.AllowedAttributes).
Warning: This directive complements %HTML.ForbiddenElements,
accordingly, check
out that directive for a discussion of why you
should think twice before using this directive.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.TargetNoreferrer.txt 0000644 00000000436 14716425662 0023566 0 ustar 00 HTML.TargetNoreferrer
TYPE: bool
VERSION: 4.8.0
DEFAULT: TRUE
--DESCRIPTION--
If enabled, noreferrer rel attributes are added to links which have
a target attribute associated with them. This prevents malicious
destinations from overwriting the original window.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.ForbiddenClasses.txt 0000644 00000000406 14716425662 0023663 0 ustar 00 Attr.ForbiddenClasses
TYPE: lookup
VERSION: 4.0.0
DEFAULT: array()
--DESCRIPTION--
List of forbidden class values in the class attribute. By default, this is
empty, which means that no classes are forbidden. See also %Attr.AllowedClasses.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.Attr.Name.UseCDATA.txt 0000644 00000000727 14716425662 0023372 0 ustar 00 HTML.Attr.Name.UseCDATA
TYPE: bool
DEFAULT: false
VERSION: 4.0.0
--DESCRIPTION--
The W3C specification DTD defines the name attribute to be CDATA, not ID, due
to limitations of DTD. In certain documents, this relaxed behavior is desired,
whether it is to specify duplicate names, or to specify names that would be
illegal IDs (for example, names that begin with a digit.) Set this configuration
directive to true to use the relaxed parsing rules.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.AllowedRev.txt 0000644 00000000377 14716425662 0022524 0 ustar 00 Attr.AllowedRev
TYPE: lookup
VERSION: 1.6.0
DEFAULT: array()
--DESCRIPTION--
List of allowed reverse document relationships in the rev attribute. This
attribute is a bit of an edge-case; if you don't know what it is for, stay
away.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.NormalizeNewlines.txt 0000644 00000000427 14716425662 0024077 0 ustar 00 Core.NormalizeNewlines
TYPE: bool
VERSION: 4.2.0
DEFAULT: true
--DESCRIPTION--
Whether or not to normalize newlines to the operating
system default. When false
, HTML Purifier
will attempt to preserve mixed newline files.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.DefaultInvalidImageAlt.txt 0000644 00000000455 14716425662 0024754 0 ustar 00 Attr.DefaultInvalidImageAlt
TYPE: string
DEFAULT: 'Invalid image'
--DESCRIPTION--
This is the content of the alt tag of an invalid image if the user had not
previously specified an alt attribute. It has no effect when the image is
valid but there was no alt attribute present.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.EscapeInvalidTags.txt 0000644 00000000312 14716425662 0023751 0 ustar 00 Core.EscapeInvalidTags
TYPE: bool
DEFAULT: false
--DESCRIPTION--
When true, invalid tags will be written back to the document as plain text.
Otherwise, they are silently dropped.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.DisableExcludes.txt 0000644 00000000712 14716425662 0023467 0 ustar 00 Core.DisableExcludes
TYPE: bool
DEFAULT: false
VERSION: 4.5.0
--DESCRIPTION--
This directive disables SGML-style exclusions, e.g. the exclusion of
<object>
in any descendant of a
<pre>
tag. Disabling excludes will allow some
invalid documents to pass through HTML Purifier, but HTML Purifier
will also be less likely to accidentally remove large documents during
processing.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.ID.HTML5.txt 0000644 00000000615 14716425662 0021577 0 ustar 00 Attr.ID.HTML5
TYPE: bool/null
DEFAULT: null
VERSION: 4.8.0
--DESCRIPTION--
In HTML5, restrictions on the format of the id attribute have been significantly
relaxed, such that any string is valid so long as it contains no spaces and
is at least one character. In lieu of a general HTML5 compatibility flag,
set this configuration directive to true to use the relaxed rules.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.SafeObject.txt 0000644 00000000671 14716425662 0022314 0 ustar 00 HTML.SafeObject
TYPE: bool
VERSION: 3.1.1
DEFAULT: false
--DESCRIPTION--
Whether or not to permit object tags in documents, with a number of extra
security features added to prevent script execution. This is similar to
what websites like MySpace do to object tags. You should also enable
%Output.FlashCompat in order to generate Internet Explorer
compatibility code for your object tags.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Filter.ExtractStyleBlocks.TidyImpl.txt 0000644 00000001100 14716425662 0026277 0 ustar 00 Filter.ExtractStyleBlocks.TidyImpl
TYPE: mixed/null
VERSION: 3.1.0
DEFAULT: NULL
ALIASES: FilterParam.ExtractStyleBlocksTidyImpl
--DESCRIPTION--
If left NULL, HTML Purifier will attempt to instantiate a csstidy
class to use for internal cleaning. This will usually be good enough.
However, for trusted user input, you can set this to false
to
disable cleaning. In addition, you can supply your own concrete implementation
of Tidy's interface to use, although I don't know why you'd want to do that.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.TargetNoopener.txt 0000644 00000000461 14716425662 0023240 0 ustar 00 --# vim: et sw=4 sts=4
HTML.TargetNoopener
TYPE: bool
VERSION: 4.8.0
DEFAULT: TRUE
--DESCRIPTION--
If enabled, noopener rel attributes are added to links which have
a target attribute associated with them. This prevents malicious
destinations from overwriting the original window.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Cache.DefinitionImpl.txt 0000644 00000000566 14716425662 0023463 0 ustar 00 Cache.DefinitionImpl
TYPE: string/null
VERSION: 2.0.0
DEFAULT: 'Serializer'
--DESCRIPTION--
This directive defines which method to use when caching definitions,
the complex data-type that makes HTML Purifier tick. Set to null
to disable caching (not recommended, as you will see a definite
performance degradation).
--ALIASES--
Core.DefinitionCache
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.RemoveProcessingInstructions.txt 0000644 00000000616 14716425662 0026351 0 ustar 00 Core.RemoveProcessingInstructions
TYPE: bool
VERSION: 4.2.0
DEFAULT: false
--DESCRIPTION--
Instead of escaping processing instructions in the form <? ...
?>
, remove it out-right. This may be useful if the HTML
you are validating contains XML processing instruction gunk, however,
it can also be user-unfriendly for people attempting to post PHP
snippets.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.Nofollow.txt 0000644 00000000243 14716425662 0022101 0 ustar 00 HTML.Nofollow
TYPE: bool
VERSION: 4.3.0
DEFAULT: FALSE
--DESCRIPTION--
If enabled, nofollow rel attributes are added to all outgoing links.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.IDBlacklist.txt 0000644 00000000173 14716425662 0022577 0 ustar 00 Attr.IDBlacklist
TYPE: list
DEFAULT: array()
DESCRIPTION: Array of IDs not allowed in the document.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.LexerImpl.txt 0000644 00000002024 14716425662 0022326 0 ustar 00 Core.LexerImpl
TYPE: mixed/null
VERSION: 2.0.0
DEFAULT: NULL
--DESCRIPTION--
This parameter determines what lexer implementation can be used. The
valid values are:
- null
-
Recommended, the lexer implementation will be auto-detected based on
your PHP-version and configuration.
- string lexer identifier
-
This is a slim way of manually overridding the implementation.
Currently recognized values are: DOMLex (the default PHP5
implementation)
and DirectLex (the default PHP4 implementation). Only use this if
you know what you are doing: usually, the auto-detection will
manage things for cases you aren't even aware of.
- object lexer instance
-
Super-advanced: you can specify your own, custom, implementation that
implements the interface defined by
HTMLPurifier_Lexer
.
I may remove this option simply because I don't expect anyone
to use it.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.EnableID.txt 0000644 00000001205 14716425662 0022052 0 ustar 00 Attr.EnableID
TYPE: bool
DEFAULT: false
VERSION: 1.2.0
--DESCRIPTION--
Allows the ID attribute in HTML. This is disabled by default due to the
fact that without proper configuration user input can easily break the
validation of a webpage by specifying an ID that is already on the
surrounding HTML. If you don't mind throwing caution to the wind, enable
this directive, but I strongly recommend you also consider blacklisting IDs
you use (%Attr.IDBlacklist) or prefixing all user supplied IDs
(%Attr.IDPrefix). When set to true HTML Purifier reverts to the behavior of
pre-1.2.0 versions.
--ALIASES--
HTML.EnableAttrID
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.EnableIDNA.txt 0000644 00000000457 14716425662 0022257 0 ustar 00 Core.EnableIDNA
TYPE: bool
DEFAULT: false
VERSION: 4.4.0
--DESCRIPTION--
Allows international domain names in URLs. This configuration option
requires the PEAR Net_IDNA2 module to be installed. It operates by
punycoding any internationalized host names for maximum portability.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.DisableExternalResources.txt 0000644 00000001045 14716425662 0025137 0 ustar 00 URI.DisableExternalResources
TYPE: bool
VERSION: 1.3.0
DEFAULT: false
--DESCRIPTION--
Disables the embedding of external resources, preventing users from
embedding things like images from other hosts. This prevents access
tracking (good for email viewers), bandwidth leeching, cross-site request
forging, goatse.cx posting, and other nasties, but also results in a loss
of end-user functionality (they can't directly post a pic they posted from
Flickr anymore). Use it if you don't have a robust user-content moderation
team.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.DisableResources.txt 0000644 00000000653 14716425662 0023440 0 ustar 00 URI.DisableResources
TYPE: bool
VERSION: 4.2.0
DEFAULT: false
--DESCRIPTION--
Disables embedding resources, essentially meaning no pictures. You can
still link to them though. See %URI.DisableExternalResources for why
this might be a good idea.
Note: While this directive has been available since 1.3.0,
it didn't actually start doing anything until 4.2.0.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.AllowDuplicates.txt 0000644 00000000423 14716425662 0023262 0 ustar 00 CSS.AllowDuplicates
TYPE: bool
DEFAULT: false
VERSION: 4.8.0
--DESCRIPTION--
By default, HTML Purifier removes duplicate CSS properties,
like color:red; color:blue
. If this is set to
true, duplicate properties are allowed.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.Encoding.txt 0000644 00000001377 14716425662 0022165 0 ustar 00 Core.Encoding
TYPE: istring
DEFAULT: 'utf-8'
--DESCRIPTION--
If for some reason you are unable to convert all webpages to UTF-8, you can
use this directive as a stop-gap compatibility change to let HTML Purifier
deal with non UTF-8 input. This technique has notable deficiencies:
absolutely no characters outside of the selected character encoding will be
preserved, not even the ones that have been ampersand escaped (this is due
to a UTF-8 specific feature that automatically resolves all
entities), making it pretty useless for anything except the most I18N-blind
applications, although %Core.EscapeNonASCIICharacters offers fixes this
trouble with another tradeoff. This directive only accepts ISO-8859-1 if
iconv is not enabled.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.DisableExternal.txt 0000644 00000000673 14716425662 0023252 0 ustar 00 URI.DisableExternal
TYPE: bool
VERSION: 1.2.0
DEFAULT: false
--DESCRIPTION--
Disables links to external websites. This is a highly effective anti-spam
and anti-pagerank-leech measure, but comes at a hefty price: nolinks or
images outside of your domain will be allowed. Non-linkified URIs will
still be preserved. If you want to be able to link to subdomains or use
absolute URIs, specify %URI.Host for your website.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.AllowedComments.txt 0000644 00000000557 14716425662 0023407 0 ustar 00 HTML.AllowedComments
TYPE: lookup
VERSION: 4.4.0
DEFAULT: array()
--DESCRIPTION--
A whitelist which indicates what explicit comment bodies should be
allowed, modulo leading and trailing whitespace. See also %HTML.AllowedCommentsRegexp
(these directives are union'ed together, so a comment is considered
valid if any directive deems it valid.)
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.DefinitionID.txt 0000644 00000002272 14716425662 0022613 0 ustar 00 HTML.DefinitionID
TYPE: string/null
DEFAULT: NULL
VERSION: 2.0.0
--DESCRIPTION--
Unique identifier for a custom-built HTML definition. If you edit
the raw version of the HTMLDefinition, introducing changes that the
configuration object does not reflect, you must specify this variable.
If you change your custom edits, you should change this directive, or
clear your cache. Example:
$config = HTMLPurifier_Config::createDefault();
$config->set('HTML', 'DefinitionID', '1');
$def = $config->getHTMLDefinition();
$def->addAttribute('a', 'tabindex', 'Number');
In the above example, the configuration is still at the defaults, but
using the advanced API, an extra attribute has been added. The
configuration object normally has no way of knowing that this change
has taken place, so it needs an extra directive: %HTML.DefinitionID.
If someone else attempts to use the default configuration, these two
pieces of code will not clobber each other in the cache, since one has
an extra directive attached to it.
You must specify a value to this directive to use the
advanced API features.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Filter.Custom.txt 0000644 00000000463 14716425662 0022241 0 ustar 00 Filter.Custom
TYPE: list
VERSION: 3.1.0
DEFAULT: array()
--DESCRIPTION--
This directive can be used to add custom filters; it is nearly the
equivalent of the now deprecated HTMLPurifier->addFilter()
method. Specify an array of concrete implementations.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.AllowedSchemes.txt 0000644 00000000745 14716425662 0023103 0 ustar 00 URI.AllowedSchemes
TYPE: lookup
--DEFAULT--
array (
'http' => true,
'https' => true,
'mailto' => true,
'ftp' => true,
'nntp' => true,
'news' => true,
'tel' => true,
)
--DESCRIPTION--
Whitelist that defines the schemes that a URI is allowed to have. This
prevents XSS attacks from using pseudo-schemes like javascript or mocha.
There is also support for the data
and file
URI schemes, but they are not enabled by default.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.IDBlacklistRegexp.txt 0000644 00000000475 14716425662 0023757 0 ustar 00 Attr.IDBlacklistRegexp
TYPE: string/null
VERSION: 1.6.0
DEFAULT: NULL
--DESCRIPTION--
PCRE regular expression to be matched against all IDs. If the expression is
matches, the ID is rejected. Use this with care: may cause significant
degradation. ID matching is done after all other validation.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.AllowTricky.txt 0000644 00000000715 14716425662 0022436 0 ustar 00 CSS.AllowTricky
TYPE: bool
DEFAULT: false
VERSION: 3.1.0
--DESCRIPTION--
This parameter determines whether or not to allow "tricky" CSS properties and
values. Tricky CSS properties/values can drastically modify page layout or
be used for deceptive practices but do not directly constitute a security risk.
For example, display:none;
is considered a tricky property that
will only be allowed if this directive is set to true.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.TidyRemove.txt 0000644 00000000253 14716425662 0022372 0 ustar 00 HTML.TidyRemove
TYPE: lookup
VERSION: 2.0.0
DEFAULT: array()
--DESCRIPTION--
Fixes to remove from the default set of Tidy fixes as per your level.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.Parent.txt 0000644 00000000472 14716425662 0021537 0 ustar 00 HTML.Parent
TYPE: string
VERSION: 1.3.0
DEFAULT: 'div'
--DESCRIPTION--
String name of element that HTML fragment passed to library will be
inserted in. An interesting variation would be using span as the
parent element, meaning that only inline tags would be allowed.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.MungeResources.txt 0000644 00000001143 14716425662 0023143 0 ustar 00 URI.MungeResources
TYPE: bool
VERSION: 3.1.1
DEFAULT: false
--DESCRIPTION--
If true, any URI munging directives like %URI.Munge
will also apply to embedded resources, such as <img src="">
.
Be careful enabling this directive if you have a redirector script
that does not use the Location
HTTP header; all of your images
and other embedded resources will break.
Warning: It is strongly advised you use this in conjunction
%URI.MungeSecretKey to mitigate the security risk of an open redirector.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.IDPrefix.txt 0000644 00000000733 14716425662 0022126 0 ustar 00 Attr.IDPrefix
TYPE: string
VERSION: 1.2.0
DEFAULT: ''
--DESCRIPTION--
String to prefix to IDs. If you have no idea what IDs your pages may use,
you may opt to simply add a prefix to all user-submitted ID attributes so
that they are still usable, but will not conflict with core page IDs.
Example: setting the directive to 'user_' will result in a user submitted
'foo' to become 'user_foo' Be sure to set %HTML.EnableAttrID to true
before using this.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Output.Newline.txt 0000644 00000000546 14716425662 0022445 0 ustar 00 Output.Newline
TYPE: string/null
VERSION: 2.0.1
DEFAULT: NULL
--DESCRIPTION--
Newline string to format final output with. If left null, HTML Purifier
will auto-detect the default newline type of the system and use that;
you can manually override it here. Remember, \r\n is Windows, \r
is Mac, and \n is Unix.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.AllowedCommentsRegexp.txt 0000644 00000001307 14716425662 0024554 0 ustar 00 HTML.AllowedCommentsRegexp
TYPE: string/null
VERSION: 4.4.0
DEFAULT: NULL
--DESCRIPTION--
A regexp, which if it matches the body of a comment, indicates that
it should be allowed. Trailing and leading spaces are removed prior
to running this regular expression.
Warning: Make sure you specify
correct anchor metacharacters ^regex$
, otherwise you may accept
comments that you did not mean to! In particular, the regex /foo|bar/
is probably not sufficiently strict, since it also allows foobar
.
See also %HTML.AllowedComments (these directives are union'ed together,
so a comment is considered valid if any directive deems it valid.)
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.MungeSecretKey.txt 0000644 00000001722 14716425662 0023072 0 ustar 00 URI.MungeSecretKey
TYPE: string/null
VERSION: 3.1.1
DEFAULT: NULL
--DESCRIPTION--
This directive enables secure checksum generation along with %URI.Munge.
It should be set to a secure key that is not shared with anyone else.
The checksum can be placed in the URI using %t. Use of this checksum
affords an additional level of protection by allowing a redirector
to check if a URI has passed through HTML Purifier with this line:
$checksum === hash_hmac("sha256", $url, $secret_key)
If the output is TRUE, the redirector script should accept the URI.
Please note that it would still be possible for an attacker to procure
secure hashes en-mass by abusing your website's Preview feature or the
like, but this service affords an additional level of protection
that should be combined with website blacklisting.
Remember this has no effect if %URI.Munge is not on.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.AllowedModules.txt 0000644 00000001326 14716425662 0023225 0 ustar 00 HTML.AllowedModules
TYPE: lookup/null
VERSION: 2.0.0
DEFAULT: NULL
--DESCRIPTION--
A doctype comes with a set of usual modules to use. Without having
to mucking about with the doctypes, you can quickly activate or
disable these modules by specifying which modules you wish to allow
with this directive. This is most useful for unit testing specific
modules, although end users may find it useful for their own ends.
If you specify a module that does not exist, the manager will silently
fail to use it, so be careful! User-defined modules are not affected
by this directive. Modules defined in %HTML.CoreModules are not
affected by this directive.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.HiddenElements.txt 0000644 00000001077 14716425662 0023324 0 ustar 00 Core.HiddenElements
TYPE: lookup
--DEFAULT--
array (
'script' => true,
'style' => true,
)
--DESCRIPTION--
This directive is a lookup array of elements which should have their
contents removed when they are not allowed by the HTML definition.
For example, the contents of a script
tag are not
normally shown in a document, so if script tags are to be removed,
their contents should be removed to. This is opposed to a b
tag, which defines some presentational changes but does not hide its
contents.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.EscapeNonASCIICharacters.txt 0000644 00000001067 14716425662 0025057 0 ustar 00 Core.EscapeNonASCIICharacters
TYPE: bool
VERSION: 1.4.0
DEFAULT: false
--DESCRIPTION--
This directive overcomes a deficiency in %Core.Encoding by blindly
converting all non-ASCII characters into decimal numeric entities before
converting it to its native encoding. This means that even characters that
can be expressed in the non-UTF-8 encoding will be entity-ized, which can
be a real downer for encodings like Big5. It also assumes that the ASCII
repetoire is available, although this is the case for almost all encodings.
Anyway, use UTF-8!
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.Disable.txt 0000644 00000000420 14716425662 0021535 0 ustar 00 URI.Disable
TYPE: bool
VERSION: 1.3.0
DEFAULT: false
--DESCRIPTION--
Disables all URIs in all forms. Not sure why you'd want to do that
(after all, the Internet's founded on the notion of a hyperlink).
--ALIASES--
Attr.DisableURI
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.SafeIframe.txt 0000644 00000000616 14716425662 0022310 0 ustar 00 HTML.SafeIframe
TYPE: bool
VERSION: 4.4.0
DEFAULT: false
--DESCRIPTION--
Whether or not to permit iframe tags in untrusted documents. This
directive must be accompanied by a whitelist of permitted iframes,
such as %URI.SafeIframeRegexp, otherwise it will fatally error.
This directive has no effect on strict doctypes, as iframes are not
valid.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.Base.txt 0000644 00000001216 14716425662 0021050 0 ustar 00 URI.Base
TYPE: string/null
VERSION: 2.1.0
DEFAULT: NULL
--DESCRIPTION--
The base URI is the URI of the document this purified HTML will be
inserted into. This information is important if HTML Purifier needs
to calculate absolute URIs from relative URIs, such as when %URI.MakeAbsolute
is on. You may use a non-absolute URI for this value, but behavior
may vary (%URI.MakeAbsolute deals nicely with both absolute and
relative paths, but forwards-compatibility is not guaranteed).
Warning: If set, the scheme on this URI
overrides the one specified by %URI.DefaultScheme.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.CoreModules.txt 0000644 00000001156 14716425662 0022527 0 ustar 00 HTML.CoreModules
TYPE: lookup
VERSION: 2.0.0
--DEFAULT--
array (
'Structure' => true,
'Text' => true,
'Hypertext' => true,
'List' => true,
'NonXMLCommonAttributes' => true,
'XMLCommonAttributes' => true,
'CommonAttributes' => true,
)
--DESCRIPTION--
Certain modularized doctypes (XHTML, namely), have certain modules
that must be included for the doctype to be an conforming document
type: put those modules here. By default, XHTML's core modules
are used. You can set this to a blank array to disable core module
protection, but this is not recommended.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.DefinitionRev.txt 0000644 00000000304 14716425662 0022731 0 ustar 00 CSS.DefinitionRev
TYPE: int
VERSION: 2.0.0
DEFAULT: 1
--DESCRIPTION--
Revision identifier for your custom definition. See
%HTML.DefinitionRev for details.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Cache.SerializerPath.txt 0000644 00000000512 14716425662 0023466 0 ustar 00 Cache.SerializerPath
TYPE: string/null
VERSION: 2.0.0
DEFAULT: NULL
--DESCRIPTION--
Absolute path with no trailing slash to store serialized definitions in.
Default is within the
HTML Purifier library inside DefinitionCache/Serializer. This
path must be writable by the webserver.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.XHTML.txt 0000644 00000000353 14716425662 0021200 0 ustar 00 HTML.XHTML
TYPE: bool
DEFAULT: true
VERSION: 1.1.0
DEPRECATED-VERSION: 1.7.0
DEPRECATED-USE: HTML.Doctype
--DESCRIPTION--
Determines whether or not output is XHTML 1.0 or HTML 4.01 flavor.
--ALIASES--
Core.XHTML
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Cache.SerializerPermissions.txt 0000644 00000000627 14716425662 0025114 0 ustar 00 Cache.SerializerPermissions
TYPE: int/null
VERSION: 4.3.0
DEFAULT: 0755
--DESCRIPTION--
Directory permissions of the files and directories created inside
the DefinitionCache/Serializer or other custom serializer path.
In HTML Purifier 4.8.0, this also supports NULL
,
which means that no chmod'ing or directory creation shall
occur.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.EscapeInvalidChildren.txt 0000644 00000000767 14716425662 0024621 0 ustar 00 Core.EscapeInvalidChildren
TYPE: bool
DEFAULT: false
--DESCRIPTION--
Warning: this configuration option is no longer does anything as of 4.6.0.
When true, a child is found that is not allowed in the context of the
parent element will be transformed into text as if it were ASCII. When
false, that element and all internal tags will be dropped, though text will
be preserved. There is no option for dropping the element but preserving
child nodes.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.AllowImportant.txt 0000644 00000000354 14716425662 0023145 0 ustar 00 CSS.AllowImportant
TYPE: bool
DEFAULT: false
VERSION: 3.1.0
--DESCRIPTION--
This parameter determines whether or not !important cascade modifiers should
be allowed in user CSS. If false, !important will stripped.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.BlockWrapper.txt 0000644 00000001073 14716425662 0022677 0 ustar 00 HTML.BlockWrapper
TYPE: string
VERSION: 1.3.0
DEFAULT: 'p'
--DESCRIPTION--
String name of element to wrap inline elements that are inside a block
context. This only occurs in the children of blockquote in strict mode.
Example: by default value,
<blockquote>Foo</blockquote>
would become
<blockquote><p>Foo</p></blockquote>
.
The <p>
tags can be replaced with whatever you desire,
as long as it is a block level element.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.ClassUseCDATA.txt 0000644 00000001636 14716425662 0022736 0 ustar 00 Attr.ClassUseCDATA
TYPE: bool/null
DEFAULT: null
VERSION: 4.0.0
--DESCRIPTION--
If null, class will auto-detect the doctype and, if matching XHTML 1.1 or
XHTML 2.0, will use the restrictive NMTOKENS specification of class. Otherwise,
it will use a relaxed CDATA definition. If true, the relaxed CDATA definition
is forced; if false, the NMTOKENS definition is forced. To get behavior
of HTML Purifier prior to 4.0.0, set this directive to false.
Some rational behind the auto-detection:
in previous versions of HTML Purifier, it was assumed that the form of
class was NMTOKENS, as specified by the XHTML Modularization (representing
XHTML 1.1 and XHTML 2.0). The DTDs for HTML 4.01 and XHTML 1.0, however
specify class as CDATA. HTML 5 effectively defines it as CDATA, but
with the additional constraint that each name should be unique (this is not
explicitly outlined in previous specifications).
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.FlashAllowFullScreen.txt 0000644 00000000437 14716425662 0024326 0 ustar 00 HTML.FlashAllowFullScreen
TYPE: bool
VERSION: 4.2.0
DEFAULT: false
--DESCRIPTION--
Whether or not to permit embedded Flash content from
%HTML.SafeObject to expand to the full screen. Corresponds to
the allowFullScreen
parameter.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.RemoveInvalidImg.txt 0000644 00000000516 14716425662 0023632 0 ustar 00 Core.RemoveInvalidImg
TYPE: bool
DEFAULT: true
VERSION: 1.3.0
--DESCRIPTION--
This directive enables pre-emptive URI checking in img
tags, as the attribute validation strategy is not authorized to
remove elements from the document. Revert to pre-1.3.0 behavior by setting to false.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.Allowed.txt 0000644 00000001744 14716425662 0021700 0 ustar 00 HTML.Allowed
TYPE: itext/null
VERSION: 2.0.0
DEFAULT: NULL
--DESCRIPTION--
This is a preferred convenience directive that combines
%HTML.AllowedElements and %HTML.AllowedAttributes.
Specify elements and attributes that are allowed using:
element1[attr1|attr2],element2...
. For example,
if you would like to only allow paragraphs and links, specify
a[href],p
. You can specify attributes that apply
to all elements using an asterisk, e.g. *[lang]
.
You can also use newlines instead of commas to separate elements.
Warning:
All of the constraints on the component directives are still enforced.
The syntax is a subset of TinyMCE's valid_elements
whitelist: directly copy-pasting it here will probably result in
broken whitelists. If %HTML.AllowedElements or %HTML.AllowedAttributes
are set, this directive has no effect.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.MaxImgLength.txt 0000644 00000000752 14716425662 0022633 0 ustar 00 HTML.MaxImgLength
TYPE: int/null
DEFAULT: 1200
VERSION: 3.1.1
--DESCRIPTION--
This directive controls the maximum number of pixels in the width and
height attributes in img
tags. This is
in place to prevent imagecrash attacks, disable with null at your own risk.
This directive is similar to %CSS.MaxImgLength, and both should be
concurrently edited, although there are
subtle differences in the input format (the HTML max is an integer).
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.HostBlacklist.txt 0000644 00000000466 14716425662 0022752 0 ustar 00 URI.HostBlacklist
TYPE: list
VERSION: 1.3.0
DEFAULT: array()
--DESCRIPTION--
List of strings that are forbidden in the host of any URI. Use it to kill
domain names of spam, etc. Note that it will catch anything in the domain,
so moo.com will catch moo.com.example.com.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.ForbiddenElements.txt 0000644 00000001362 14716425662 0023676 0 ustar 00 HTML.ForbiddenElements
TYPE: lookup
VERSION: 3.1.0
DEFAULT: array()
--DESCRIPTION--
This was, perhaps, the most requested feature ever in HTML
Purifier. Please don't abuse it! This is the logical inverse of
%HTML.AllowedElements, and it will override that directive, or any
other directive.
If possible, %HTML.Allowed is recommended over this directive, because it
can sometimes be difficult to tell whether or not you've forbidden all of
the behavior you would like to disallow. If you forbid img
with the expectation of preventing images on your site, you'll be in for
a nasty surprise when people start using the background-image
CSS property.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.MaxImgLength.txt 0000644 00000001157 14716425662 0022517 0 ustar 00 CSS.MaxImgLength
TYPE: string/null
DEFAULT: '1200px'
VERSION: 3.1.1
--DESCRIPTION--
This parameter sets the maximum allowed length on img
tags,
effectively the width
and height
properties.
Only absolute units of measurement (in, pt, pc, mm, cm) and pixels (px) are allowed. This is
in place to prevent imagecrash attacks, disable with null at your own risk.
This directive is similar to %HTML.MaxImgLength, and both should be
concurrently edited, although there are
subtle differences in the input format (the CSS max is a number with
a unit).
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.Language.txt 0000644 00000000444 14716425662 0022154 0 ustar 00 Core.Language
TYPE: string
VERSION: 2.0.0
DEFAULT: 'en'
--DESCRIPTION--
ISO 639 language code for localizable things in HTML Purifier to use,
which is mainly error reporting. There is currently only an English (en)
translation, so this directive is currently useless.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.TidyAdd.txt 0000644 00000000243 14716425662 0021624 0 ustar 00 HTML.TidyAdd
TYPE: lookup
VERSION: 2.0.0
DEFAULT: array()
--DESCRIPTION--
Fixes to add to the default set of Tidy fixes as per your level.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.PurifierLinkify.txt 0000644 00000000464 14716425662 0024737 0 ustar 00 AutoFormat.PurifierLinkify
TYPE: bool
VERSION: 2.0.1
DEFAULT: false
--DESCRIPTION--
Internal auto-formatter that converts configuration directives in
syntax %Namespace.Directive to links. a
tags
with the href
attribute must be allowed.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.AllowedFonts.txt 0000644 00000000537 14716425662 0022575 0 ustar 00 CSS.AllowedFonts
TYPE: lookup/null
VERSION: 4.3.0
DEFAULT: NULL
--DESCRIPTION--
Allows you to manually specify a set of allowed fonts. If
NULL
, all fonts are allowed. This directive
affects generic names (serif, sans-serif, monospace, cursive,
fantasy) as well as specific font families.
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Output.TidyFormat.txt 0000644 00000001473 14716425662 0023126 0 ustar 00 Output.TidyFormat
TYPE: bool
VERSION: 1.1.1
DEFAULT: false
--DESCRIPTION--
Determines whether or not to run Tidy on the final output for pretty
formatting reasons, such as indentation and wrap.
This can greatly improve readability for editors who are hand-editing
the HTML, but is by no means necessary as HTML Purifier has already
fixed all major errors the HTML may have had. Tidy is a non-default
extension, and this directive will silently fail if Tidy is not
available.
If you are looking to make the overall look of your page's source
better, I recommend running Tidy on the entire page rather than just
user-content (after all, the indentation relative to the containing
blocks will be incorrect).
--ALIASES--
Core.TidyFormat
--# vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/InterchangeBuilder.php 0000644 00000015713 14716425662 0022015 0 ustar 00 varParser = $varParser ? $varParser : new HTMLPurifier_VarParser_Native();
}
/**
* @param string $dir
* @return HTMLPurifier_ConfigSchema_Interchange
*/
public static function buildFromDirectory($dir = null)
{
$builder = new HTMLPurifier_ConfigSchema_InterchangeBuilder();
$interchange = new HTMLPurifier_ConfigSchema_Interchange();
return $builder->buildDir($interchange, $dir);
}
/**
* @param HTMLPurifier_ConfigSchema_Interchange $interchange
* @param string $dir
* @return HTMLPurifier_ConfigSchema_Interchange
*/
public function buildDir($interchange, $dir = null)
{
if (!$dir) {
$dir = HTMLPURIFIER_PREFIX . '/HTMLPurifier/ConfigSchema/schema';
}
if (file_exists($dir . '/info.ini')) {
$info = parse_ini_file($dir . '/info.ini');
$interchange->name = $info['name'];
}
$files = array();
$dh = opendir($dir);
while (false !== ($file = readdir($dh))) {
if (!$file || $file[0] == '.' || strrchr($file, '.') !== '.txt') {
continue;
}
$files[] = $file;
}
closedir($dh);
sort($files);
foreach ($files as $file) {
$this->buildFile($interchange, $dir . '/' . $file);
}
return $interchange;
}
/**
* @param HTMLPurifier_ConfigSchema_Interchange $interchange
* @param string $file
*/
public function buildFile($interchange, $file)
{
$parser = new HTMLPurifier_StringHashParser();
$this->build(
$interchange,
new HTMLPurifier_StringHash($parser->parseFile($file))
);
}
/**
* Builds an interchange object based on a hash.
* @param HTMLPurifier_ConfigSchema_Interchange $interchange HTMLPurifier_ConfigSchema_Interchange object to build
* @param HTMLPurifier_StringHash $hash source data
* @throws HTMLPurifier_ConfigSchema_Exception
*/
public function build($interchange, $hash)
{
if (!$hash instanceof HTMLPurifier_StringHash) {
$hash = new HTMLPurifier_StringHash($hash);
}
if (!isset($hash['ID'])) {
throw new HTMLPurifier_ConfigSchema_Exception('Hash does not have any ID');
}
if (strpos($hash['ID'], '.') === false) {
if (count($hash) == 2 && isset($hash['DESCRIPTION'])) {
$hash->offsetGet('DESCRIPTION'); // prevent complaining
} else {
throw new HTMLPurifier_ConfigSchema_Exception('All directives must have a namespace');
}
} else {
$this->buildDirective($interchange, $hash);
}
$this->_findUnused($hash);
}
/**
* @param HTMLPurifier_ConfigSchema_Interchange $interchange
* @param HTMLPurifier_StringHash $hash
* @throws HTMLPurifier_ConfigSchema_Exception
*/
public function buildDirective($interchange, $hash)
{
$directive = new HTMLPurifier_ConfigSchema_Interchange_Directive();
// These are required elements:
$directive->id = $this->id($hash->offsetGet('ID'));
$id = $directive->id->toString(); // convenience
if (isset($hash['TYPE'])) {
$type = explode('/', $hash->offsetGet('TYPE'));
if (isset($type[1])) {
$directive->typeAllowsNull = true;
}
$directive->type = $type[0];
} else {
throw new HTMLPurifier_ConfigSchema_Exception("TYPE in directive hash '$id' not defined");
}
if (isset($hash['DEFAULT'])) {
try {
$directive->default = $this->varParser->parse(
$hash->offsetGet('DEFAULT'),
$directive->type,
$directive->typeAllowsNull
);
} catch (HTMLPurifier_VarParserException $e) {
throw new HTMLPurifier_ConfigSchema_Exception($e->getMessage() . " in DEFAULT in directive hash '$id'");
}
}
if (isset($hash['DESCRIPTION'])) {
$directive->description = $hash->offsetGet('DESCRIPTION');
}
if (isset($hash['ALLOWED'])) {
$directive->allowed = $this->lookup($this->evalArray($hash->offsetGet('ALLOWED')));
}
if (isset($hash['VALUE-ALIASES'])) {
$directive->valueAliases = $this->evalArray($hash->offsetGet('VALUE-ALIASES'));
}
if (isset($hash['ALIASES'])) {
$raw_aliases = trim($hash->offsetGet('ALIASES'));
$aliases = preg_split('/\s*,\s*/', $raw_aliases);
foreach ($aliases as $alias) {
$directive->aliases[] = $this->id($alias);
}
}
if (isset($hash['VERSION'])) {
$directive->version = $hash->offsetGet('VERSION');
}
if (isset($hash['DEPRECATED-USE'])) {
$directive->deprecatedUse = $this->id($hash->offsetGet('DEPRECATED-USE'));
}
if (isset($hash['DEPRECATED-VERSION'])) {
$directive->deprecatedVersion = $hash->offsetGet('DEPRECATED-VERSION');
}
if (isset($hash['EXTERNAL'])) {
$directive->external = preg_split('/\s*,\s*/', trim($hash->offsetGet('EXTERNAL')));
}
$interchange->addDirective($directive);
}
/**
* Evaluates an array PHP code string without array() wrapper
* @param string $contents
*/
protected function evalArray($contents)
{
return eval('return array(' . $contents . ');');
}
/**
* Converts an array list into a lookup array.
* @param array $array
* @return array
*/
protected function lookup($array)
{
$ret = array();
foreach ($array as $val) {
$ret[$val] = true;
}
return $ret;
}
/**
* Convenience function that creates an HTMLPurifier_ConfigSchema_Interchange_Id
* object based on a string Id.
* @param string $id
* @return HTMLPurifier_ConfigSchema_Interchange_Id
*/
protected function id($id)
{
return HTMLPurifier_ConfigSchema_Interchange_Id::make($id);
}
/**
* Triggers errors for any unused keys passed in the hash; such keys
* may indicate typos, missing values, etc.
* @param HTMLPurifier_StringHash $hash Hash to check.
*/
protected function _findUnused($hash)
{
$accessed = $hash->getAccessed();
foreach ($hash as $k => $v) {
if (!isset($accessed[$k])) {
trigger_error("String hash key '$k' not used by builder", E_USER_NOTICE);
}
}
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/Validator.php 0000644 00000020257 14716425662 0020203 0 ustar 00 parser = new HTMLPurifier_VarParser();
}
/**
* Validates a fully-formed interchange object.
* @param HTMLPurifier_ConfigSchema_Interchange $interchange
* @return bool
*/
public function validate($interchange)
{
$this->interchange = $interchange;
$this->aliases = array();
// PHP is a bit lax with integer <=> string conversions in
// arrays, so we don't use the identical !== comparison
foreach ($interchange->directives as $i => $directive) {
$id = $directive->id->toString();
if ($i != $id) {
$this->error(false, "Integrity violation: key '$i' does not match internal id '$id'");
}
$this->validateDirective($directive);
}
return true;
}
/**
* Validates a HTMLPurifier_ConfigSchema_Interchange_Id object.
* @param HTMLPurifier_ConfigSchema_Interchange_Id $id
*/
public function validateId($id)
{
$id_string = $id->toString();
$this->context[] = "id '$id_string'";
if (!$id instanceof HTMLPurifier_ConfigSchema_Interchange_Id) {
// handled by InterchangeBuilder
$this->error(false, 'is not an instance of HTMLPurifier_ConfigSchema_Interchange_Id');
}
// keys are now unconstrained (we might want to narrow down to A-Za-z0-9.)
// we probably should check that it has at least one namespace
$this->with($id, 'key')
->assertNotEmpty()
->assertIsString(); // implicit assertIsString handled by InterchangeBuilder
array_pop($this->context);
}
/**
* Validates a HTMLPurifier_ConfigSchema_Interchange_Directive object.
* @param HTMLPurifier_ConfigSchema_Interchange_Directive $d
*/
public function validateDirective($d)
{
$id = $d->id->toString();
$this->context[] = "directive '$id'";
$this->validateId($d->id);
$this->with($d, 'description')
->assertNotEmpty();
// BEGIN - handled by InterchangeBuilder
$this->with($d, 'type')
->assertNotEmpty();
$this->with($d, 'typeAllowsNull')
->assertIsBool();
try {
// This also tests validity of $d->type
$this->parser->parse($d->default, $d->type, $d->typeAllowsNull);
} catch (HTMLPurifier_VarParserException $e) {
$this->error('default', 'had error: ' . $e->getMessage());
}
// END - handled by InterchangeBuilder
if (!is_null($d->allowed) || !empty($d->valueAliases)) {
// allowed and valueAliases require that we be dealing with
// strings, so check for that early.
$d_int = HTMLPurifier_VarParser::$types[$d->type];
if (!isset(HTMLPurifier_VarParser::$stringTypes[$d_int])) {
$this->error('type', 'must be a string type when used with allowed or value aliases');
}
}
$this->validateDirectiveAllowed($d);
$this->validateDirectiveValueAliases($d);
$this->validateDirectiveAliases($d);
array_pop($this->context);
}
/**
* Extra validation if $allowed member variable of
* HTMLPurifier_ConfigSchema_Interchange_Directive is defined.
* @param HTMLPurifier_ConfigSchema_Interchange_Directive $d
*/
public function validateDirectiveAllowed($d)
{
if (is_null($d->allowed)) {
return;
}
$this->with($d, 'allowed')
->assertNotEmpty()
->assertIsLookup(); // handled by InterchangeBuilder
if (is_string($d->default) && !isset($d->allowed[$d->default])) {
$this->error('default', 'must be an allowed value');
}
$this->context[] = 'allowed';
foreach ($d->allowed as $val => $x) {
if (!is_string($val)) {
$this->error("value $val", 'must be a string');
}
}
array_pop($this->context);
}
/**
* Extra validation if $valueAliases member variable of
* HTMLPurifier_ConfigSchema_Interchange_Directive is defined.
* @param HTMLPurifier_ConfigSchema_Interchange_Directive $d
*/
public function validateDirectiveValueAliases($d)
{
if (is_null($d->valueAliases)) {
return;
}
$this->with($d, 'valueAliases')
->assertIsArray(); // handled by InterchangeBuilder
$this->context[] = 'valueAliases';
foreach ($d->valueAliases as $alias => $real) {
if (!is_string($alias)) {
$this->error("alias $alias", 'must be a string');
}
if (!is_string($real)) {
$this->error("alias target $real from alias '$alias'", 'must be a string');
}
if ($alias === $real) {
$this->error("alias '$alias'", "must not be an alias to itself");
}
}
if (!is_null($d->allowed)) {
foreach ($d->valueAliases as $alias => $real) {
if (isset($d->allowed[$alias])) {
$this->error("alias '$alias'", 'must not be an allowed value');
} elseif (!isset($d->allowed[$real])) {
$this->error("alias '$alias'", 'must be an alias to an allowed value');
}
}
}
array_pop($this->context);
}
/**
* Extra validation if $aliases member variable of
* HTMLPurifier_ConfigSchema_Interchange_Directive is defined.
* @param HTMLPurifier_ConfigSchema_Interchange_Directive $d
*/
public function validateDirectiveAliases($d)
{
$this->with($d, 'aliases')
->assertIsArray(); // handled by InterchangeBuilder
$this->context[] = 'aliases';
foreach ($d->aliases as $alias) {
$this->validateId($alias);
$s = $alias->toString();
if (isset($this->interchange->directives[$s])) {
$this->error("alias '$s'", 'collides with another directive');
}
if (isset($this->aliases[$s])) {
$other_directive = $this->aliases[$s];
$this->error("alias '$s'", "collides with alias for directive '$other_directive'");
}
$this->aliases[$s] = $d->id->toString();
}
array_pop($this->context);
}
// protected helper functions
/**
* Convenience function for generating HTMLPurifier_ConfigSchema_ValidatorAtom
* for validating simple member variables of objects.
* @param $obj
* @param $member
* @return HTMLPurifier_ConfigSchema_ValidatorAtom
*/
protected function with($obj, $member)
{
return new HTMLPurifier_ConfigSchema_ValidatorAtom($this->getFormattedContext(), $obj, $member);
}
/**
* Emits an error, providing helpful context.
* @throws HTMLPurifier_ConfigSchema_Exception
*/
protected function error($target, $msg)
{
if ($target !== false) {
$prefix = ucfirst($target) . ' in ' . $this->getFormattedContext();
} else {
$prefix = ucfirst($this->getFormattedContext());
}
throw new HTMLPurifier_ConfigSchema_Exception(trim($prefix . ' ' . $msg));
}
/**
* Returns a formatted context string.
* @return string
*/
protected function getFormattedContext()
{
return implode(' in ', array_reverse($this->context));
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/error_log; 0000644 00000022300 14716425662 0017544 0 ustar 00 [18-Nov-2023 08:40:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Exception.php on line 6
[27-Nov-2023 21:23:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Exception.php on line 6
[29-Nov-2023 01:27:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Exception.php on line 6
[30-Nov-2023 11:11:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Exception.php on line 6
[01-Dec-2023 20:33:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Exception.php on line 6
[13-Jan-2024 20:00:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Exception.php on line 6
[06-Apr-2024 13:48:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Exception.php on line 6
[30-Apr-2024 13:33:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Exception.php on line 6
[03-May-2024 20:58:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Exception.php on line 6
[05-May-2024 01:28:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Exception.php on line 6
[05-May-2024 11:23:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Exception.php on line 6
[05-May-2024 20:48:56 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Exception.php on line 6
[13-May-2024 11:52:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Exception.php on line 6
[14-May-2024 20:16:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Exception.php on line 6
[19-May-2024 12:53:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Exception.php on line 6
[28-May-2024 09:30:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Exception.php on line 6
[10-Jun-2024 23:54:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Exception.php on line 6
[14-Jun-2024 13:22:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Exception.php on line 6
[18-Jun-2024 22:57:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Exception.php on line 6
[19-Jun-2024 07:55:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Exception.php on line 6
[19-Jun-2024 20:44:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Exception.php on line 6
[03-Jul-2024 14:46:26 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Exception.php on line 6
[14-Jul-2024 10:12:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Exception.php on line 6
[18-Jul-2024 15:48:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Exception.php on line 6
[22-Jul-2024 19:40:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Exception.php on line 6
[10-Aug-2024 04:53:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Exception.php on line 6
[25-Aug-2024 06:13:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Exception.php on line 6
[26-Aug-2024 21:50:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Exception.php on line 6
[01-Sep-2024 18:38:02 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Exception.php on line 6
[01-Sep-2024 23:39:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Exception.php on line 6
[07-Sep-2024 20:41:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Exception.php on line 6
[11-Sep-2024 23:08:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Exception.php on line 6
[13-Sep-2024 06:59:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Exception.php on line 6
[13-Sep-2024 07:00:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Exception.php on line 6
[16-Sep-2024 22:15:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Exception.php on line 6
[07-Oct-2024 09:03:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Exception.php on line 6
[08-Oct-2024 10:50:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Exception.php on line 6
[12-Oct-2024 22:08:01 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Exception.php on line 6
[18-Oct-2024 16:26:21 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Exception.php on line 6
[25-Oct-2024 03:43:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Exception.php on line 6
[31-Oct-2024 14:19:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Exception.php on line 6
[10-Nov-2024 08:18:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_Exception' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/Exception.php on line 6
htmlpurifier/library/HTMLPurifier/ConfigSchema/schema.ser 0000644 00000037063 14716425662 0017523 0 ustar 00 O:25:"HTMLPurifier_ConfigSchema":3:{s:8:"defaults";a:125:{s:19:"Attr.AllowedClasses";N;s:24:"Attr.AllowedFrameTargets";a:0:{}s:15:"Attr.AllowedRel";a:0:{}s:15:"Attr.AllowedRev";a:0:{}s:18:"Attr.ClassUseCDATA";N;s:20:"Attr.DefaultImageAlt";N;s:24:"Attr.DefaultInvalidImage";s:0:"";s:27:"Attr.DefaultInvalidImageAlt";s:13:"Invalid image";s:19:"Attr.DefaultTextDir";s:3:"ltr";s:13:"Attr.EnableID";b:0;s:21:"Attr.ForbiddenClasses";a:0:{}s:13:"Attr.ID.HTML5";N;s:16:"Attr.IDBlacklist";a:0:{}s:22:"Attr.IDBlacklistRegexp";N;s:13:"Attr.IDPrefix";s:0:"";s:18:"Attr.IDPrefixLocal";s:0:"";s:24:"AutoFormat.AutoParagraph";b:0;s:17:"AutoFormat.Custom";a:0:{}s:25:"AutoFormat.DisplayLinkURI";b:0;s:18:"AutoFormat.Linkify";b:0;s:33:"AutoFormat.PurifierLinkify.DocURL";s:3:"#%s";s:26:"AutoFormat.PurifierLinkify";b:0;s:32:"AutoFormat.RemoveEmpty.Predicate";a:4:{s:8:"colgroup";a:0:{}s:2:"th";a:0:{}s:2:"td";a:0:{}s:6:"iframe";a:1:{i:0;s:3:"src";}}s:44:"AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions";a:2:{s:2:"td";b:1;s:2:"th";b:1;}s:33:"AutoFormat.RemoveEmpty.RemoveNbsp";b:0;s:22:"AutoFormat.RemoveEmpty";b:0;s:39:"AutoFormat.RemoveSpansWithoutAttributes";b:0;s:19:"CSS.AllowDuplicates";b:0;s:18:"CSS.AllowImportant";b:0;s:15:"CSS.AllowTricky";b:0;s:16:"CSS.AllowedFonts";N;s:21:"CSS.AllowedProperties";N;s:17:"CSS.DefinitionRev";i:1;s:23:"CSS.ForbiddenProperties";a:0:{}s:16:"CSS.MaxImgLength";s:6:"1200px";s:15:"CSS.Proprietary";b:0;s:11:"CSS.Trusted";b:0;s:20:"Cache.DefinitionImpl";s:10:"Serializer";s:20:"Cache.SerializerPath";N;s:27:"Cache.SerializerPermissions";i:493;s:22:"Core.AggressivelyFixLt";b:1;s:29:"Core.AggressivelyRemoveScript";b:1;s:28:"Core.AllowHostnameUnderscore";b:0;s:18:"Core.CollectErrors";b:0;s:18:"Core.ColorKeywords";a:17:{s:6:"maroon";s:7:"#800000";s:3:"red";s:7:"#FF0000";s:6:"orange";s:7:"#FFA500";s:6:"yellow";s:7:"#FFFF00";s:5:"olive";s:7:"#808000";s:6:"purple";s:7:"#800080";s:7:"fuchsia";s:7:"#FF00FF";s:5:"white";s:7:"#FFFFFF";s:4:"lime";s:7:"#00FF00";s:5:"green";s:7:"#008000";s:4:"navy";s:7:"#000080";s:4:"blue";s:7:"#0000FF";s:4:"aqua";s:7:"#00FFFF";s:4:"teal";s:7:"#008080";s:5:"black";s:7:"#000000";s:6:"silver";s:7:"#C0C0C0";s:4:"gray";s:7:"#808080";}s:30:"Core.ConvertDocumentToFragment";b:1;s:36:"Core.DirectLexLineNumberSyncInterval";i:0;s:20:"Core.DisableExcludes";b:0;s:15:"Core.EnableIDNA";b:0;s:13:"Core.Encoding";s:5:"utf-8";s:26:"Core.EscapeInvalidChildren";b:0;s:22:"Core.EscapeInvalidTags";b:0;s:29:"Core.EscapeNonASCIICharacters";b:0;s:19:"Core.HiddenElements";a:2:{s:6:"script";b:1;s:5:"style";b:1;}s:13:"Core.Language";s:2:"en";s:24:"Core.LegacyEntityDecoder";b:0;s:14:"Core.LexerImpl";N;s:24:"Core.MaintainLineNumbers";N;s:22:"Core.NormalizeNewlines";b:1;s:21:"Core.RemoveInvalidImg";b:1;s:33:"Core.RemoveProcessingInstructions";b:0;s:25:"Core.RemoveScriptContents";N;s:13:"Filter.Custom";a:0:{}s:34:"Filter.ExtractStyleBlocks.Escaping";b:1;s:31:"Filter.ExtractStyleBlocks.Scope";N;s:34:"Filter.ExtractStyleBlocks.TidyImpl";N;s:25:"Filter.ExtractStyleBlocks";b:0;s:14:"Filter.YouTube";b:0;s:12:"HTML.Allowed";N;s:22:"HTML.AllowedAttributes";N;s:20:"HTML.AllowedComments";a:0:{}s:26:"HTML.AllowedCommentsRegexp";N;s:20:"HTML.AllowedElements";N;s:19:"HTML.AllowedModules";N;s:23:"HTML.Attr.Name.UseCDATA";b:0;s:17:"HTML.BlockWrapper";s:1:"p";s:16:"HTML.CoreModules";a:7:{s:9:"Structure";b:1;s:4:"Text";b:1;s:9:"Hypertext";b:1;s:4:"List";b:1;s:22:"NonXMLCommonAttributes";b:1;s:19:"XMLCommonAttributes";b:1;s:16:"CommonAttributes";b:1;}s:18:"HTML.CustomDoctype";N;s:17:"HTML.DefinitionID";N;s:18:"HTML.DefinitionRev";i:1;s:12:"HTML.Doctype";N;s:25:"HTML.FlashAllowFullScreen";b:0;s:24:"HTML.ForbiddenAttributes";a:0:{}s:22:"HTML.ForbiddenElements";a:0:{}s:17:"HTML.MaxImgLength";i:1200;s:13:"HTML.Nofollow";b:0;s:11:"HTML.Parent";s:3:"div";s:16:"HTML.Proprietary";b:0;s:14:"HTML.SafeEmbed";b:0;s:15:"HTML.SafeIframe";b:0;s:15:"HTML.SafeObject";b:0;s:18:"HTML.SafeScripting";a:0:{}s:11:"HTML.Strict";b:0;s:16:"HTML.TargetBlank";b:0;s:19:"HTML.TargetNoopener";b:1;s:21:"HTML.TargetNoreferrer";b:1;s:12:"HTML.TidyAdd";a:0:{}s:14:"HTML.TidyLevel";s:6:"medium";s:15:"HTML.TidyRemove";a:0:{}s:12:"HTML.Trusted";b:0;s:10:"HTML.XHTML";b:1;s:28:"Output.CommentScriptContents";b:1;s:19:"Output.FixInnerHTML";b:1;s:18:"Output.FlashCompat";b:0;s:14:"Output.Newline";N;s:15:"Output.SortAttr";b:0;s:17:"Output.TidyFormat";b:0;s:17:"Test.ForceNoIconv";b:0;s:18:"URI.AllowedSchemes";a:7:{s:4:"http";b:1;s:5:"https";b:1;s:6:"mailto";b:1;s:3:"ftp";b:1;s:4:"nntp";b:1;s:4:"news";b:1;s:3:"tel";b:1;}s:8:"URI.Base";N;s:17:"URI.DefaultScheme";s:4:"http";s:16:"URI.DefinitionID";N;s:17:"URI.DefinitionRev";i:1;s:11:"URI.Disable";b:0;s:19:"URI.DisableExternal";b:0;s:28:"URI.DisableExternalResources";b:0;s:20:"URI.DisableResources";b:0;s:8:"URI.Host";N;s:17:"URI.HostBlacklist";a:0:{}s:16:"URI.MakeAbsolute";b:0;s:9:"URI.Munge";N;s:18:"URI.MungeResources";b:0;s:18:"URI.MungeSecretKey";N;s:26:"URI.OverrideAllowedSchemes";b:1;s:20:"URI.SafeIframeRegexp";N;}s:12:"defaultPlist";O:25:"HTMLPurifier_PropertyList":3:{s:7:" * data";a:125:{s:19:"Attr.AllowedClasses";N;s:24:"Attr.AllowedFrameTargets";a:0:{}s:15:"Attr.AllowedRel";a:0:{}s:15:"Attr.AllowedRev";a:0:{}s:18:"Attr.ClassUseCDATA";N;s:20:"Attr.DefaultImageAlt";N;s:24:"Attr.DefaultInvalidImage";s:0:"";s:27:"Attr.DefaultInvalidImageAlt";s:13:"Invalid image";s:19:"Attr.DefaultTextDir";s:3:"ltr";s:13:"Attr.EnableID";b:0;s:21:"Attr.ForbiddenClasses";a:0:{}s:13:"Attr.ID.HTML5";N;s:16:"Attr.IDBlacklist";a:0:{}s:22:"Attr.IDBlacklistRegexp";N;s:13:"Attr.IDPrefix";s:0:"";s:18:"Attr.IDPrefixLocal";s:0:"";s:24:"AutoFormat.AutoParagraph";b:0;s:17:"AutoFormat.Custom";a:0:{}s:25:"AutoFormat.DisplayLinkURI";b:0;s:18:"AutoFormat.Linkify";b:0;s:33:"AutoFormat.PurifierLinkify.DocURL";s:3:"#%s";s:26:"AutoFormat.PurifierLinkify";b:0;s:32:"AutoFormat.RemoveEmpty.Predicate";a:4:{s:8:"colgroup";a:0:{}s:2:"th";a:0:{}s:2:"td";a:0:{}s:6:"iframe";a:1:{i:0;s:3:"src";}}s:44:"AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions";a:2:{s:2:"td";b:1;s:2:"th";b:1;}s:33:"AutoFormat.RemoveEmpty.RemoveNbsp";b:0;s:22:"AutoFormat.RemoveEmpty";b:0;s:39:"AutoFormat.RemoveSpansWithoutAttributes";b:0;s:19:"CSS.AllowDuplicates";b:0;s:18:"CSS.AllowImportant";b:0;s:15:"CSS.AllowTricky";b:0;s:16:"CSS.AllowedFonts";N;s:21:"CSS.AllowedProperties";N;s:17:"CSS.DefinitionRev";i:1;s:23:"CSS.ForbiddenProperties";a:0:{}s:16:"CSS.MaxImgLength";s:6:"1200px";s:15:"CSS.Proprietary";b:0;s:11:"CSS.Trusted";b:0;s:20:"Cache.DefinitionImpl";s:10:"Serializer";s:20:"Cache.SerializerPath";N;s:27:"Cache.SerializerPermissions";i:493;s:22:"Core.AggressivelyFixLt";b:1;s:29:"Core.AggressivelyRemoveScript";b:1;s:28:"Core.AllowHostnameUnderscore";b:0;s:18:"Core.CollectErrors";b:0;s:18:"Core.ColorKeywords";a:17:{s:6:"maroon";s:7:"#800000";s:3:"red";s:7:"#FF0000";s:6:"orange";s:7:"#FFA500";s:6:"yellow";s:7:"#FFFF00";s:5:"olive";s:7:"#808000";s:6:"purple";s:7:"#800080";s:7:"fuchsia";s:7:"#FF00FF";s:5:"white";s:7:"#FFFFFF";s:4:"lime";s:7:"#00FF00";s:5:"green";s:7:"#008000";s:4:"navy";s:7:"#000080";s:4:"blue";s:7:"#0000FF";s:4:"aqua";s:7:"#00FFFF";s:4:"teal";s:7:"#008080";s:5:"black";s:7:"#000000";s:6:"silver";s:7:"#C0C0C0";s:4:"gray";s:7:"#808080";}s:30:"Core.ConvertDocumentToFragment";b:1;s:36:"Core.DirectLexLineNumberSyncInterval";i:0;s:20:"Core.DisableExcludes";b:0;s:15:"Core.EnableIDNA";b:0;s:13:"Core.Encoding";s:5:"utf-8";s:26:"Core.EscapeInvalidChildren";b:0;s:22:"Core.EscapeInvalidTags";b:0;s:29:"Core.EscapeNonASCIICharacters";b:0;s:19:"Core.HiddenElements";a:2:{s:6:"script";b:1;s:5:"style";b:1;}s:13:"Core.Language";s:2:"en";s:24:"Core.LegacyEntityDecoder";b:0;s:14:"Core.LexerImpl";N;s:24:"Core.MaintainLineNumbers";N;s:22:"Core.NormalizeNewlines";b:1;s:21:"Core.RemoveInvalidImg";b:1;s:33:"Core.RemoveProcessingInstructions";b:0;s:25:"Core.RemoveScriptContents";N;s:13:"Filter.Custom";a:0:{}s:34:"Filter.ExtractStyleBlocks.Escaping";b:1;s:31:"Filter.ExtractStyleBlocks.Scope";N;s:34:"Filter.ExtractStyleBlocks.TidyImpl";N;s:25:"Filter.ExtractStyleBlocks";b:0;s:14:"Filter.YouTube";b:0;s:12:"HTML.Allowed";N;s:22:"HTML.AllowedAttributes";N;s:20:"HTML.AllowedComments";a:0:{}s:26:"HTML.AllowedCommentsRegexp";N;s:20:"HTML.AllowedElements";N;s:19:"HTML.AllowedModules";N;s:23:"HTML.Attr.Name.UseCDATA";b:0;s:17:"HTML.BlockWrapper";s:1:"p";s:16:"HTML.CoreModules";a:7:{s:9:"Structure";b:1;s:4:"Text";b:1;s:9:"Hypertext";b:1;s:4:"List";b:1;s:22:"NonXMLCommonAttributes";b:1;s:19:"XMLCommonAttributes";b:1;s:16:"CommonAttributes";b:1;}s:18:"HTML.CustomDoctype";N;s:17:"HTML.DefinitionID";N;s:18:"HTML.DefinitionRev";i:1;s:12:"HTML.Doctype";N;s:25:"HTML.FlashAllowFullScreen";b:0;s:24:"HTML.ForbiddenAttributes";a:0:{}s:22:"HTML.ForbiddenElements";a:0:{}s:17:"HTML.MaxImgLength";i:1200;s:13:"HTML.Nofollow";b:0;s:11:"HTML.Parent";s:3:"div";s:16:"HTML.Proprietary";b:0;s:14:"HTML.SafeEmbed";b:0;s:15:"HTML.SafeIframe";b:0;s:15:"HTML.SafeObject";b:0;s:18:"HTML.SafeScripting";a:0:{}s:11:"HTML.Strict";b:0;s:16:"HTML.TargetBlank";b:0;s:19:"HTML.TargetNoopener";b:1;s:21:"HTML.TargetNoreferrer";b:1;s:12:"HTML.TidyAdd";a:0:{}s:14:"HTML.TidyLevel";s:6:"medium";s:15:"HTML.TidyRemove";a:0:{}s:12:"HTML.Trusted";b:0;s:10:"HTML.XHTML";b:1;s:28:"Output.CommentScriptContents";b:1;s:19:"Output.FixInnerHTML";b:1;s:18:"Output.FlashCompat";b:0;s:14:"Output.Newline";N;s:15:"Output.SortAttr";b:0;s:17:"Output.TidyFormat";b:0;s:17:"Test.ForceNoIconv";b:0;s:18:"URI.AllowedSchemes";a:7:{s:4:"http";b:1;s:5:"https";b:1;s:6:"mailto";b:1;s:3:"ftp";b:1;s:4:"nntp";b:1;s:4:"news";b:1;s:3:"tel";b:1;}s:8:"URI.Base";N;s:17:"URI.DefaultScheme";s:4:"http";s:16:"URI.DefinitionID";N;s:17:"URI.DefinitionRev";i:1;s:11:"URI.Disable";b:0;s:19:"URI.DisableExternal";b:0;s:28:"URI.DisableExternalResources";b:0;s:20:"URI.DisableResources";b:0;s:8:"URI.Host";N;s:17:"URI.HostBlacklist";a:0:{}s:16:"URI.MakeAbsolute";b:0;s:9:"URI.Munge";N;s:18:"URI.MungeResources";b:0;s:18:"URI.MungeSecretKey";N;s:26:"URI.OverrideAllowedSchemes";b:1;s:20:"URI.SafeIframeRegexp";N;}s:9:" * parent";N;s:8:" * cache";N;}s:4:"info";a:138:{s:19:"Attr.AllowedClasses";i:-8;s:24:"Attr.AllowedFrameTargets";i:8;s:15:"Attr.AllowedRel";i:8;s:15:"Attr.AllowedRev";i:8;s:18:"Attr.ClassUseCDATA";i:-7;s:20:"Attr.DefaultImageAlt";i:-1;s:24:"Attr.DefaultInvalidImage";i:1;s:27:"Attr.DefaultInvalidImageAlt";i:1;s:19:"Attr.DefaultTextDir";O:8:"stdClass":2:{s:4:"type";i:1;s:7:"allowed";a:2:{s:3:"ltr";b:1;s:3:"rtl";b:1;}}s:13:"Attr.EnableID";i:7;s:17:"HTML.EnableAttrID";O:8:"stdClass":2:{s:3:"key";s:13:"Attr.EnableID";s:7:"isAlias";b:1;}s:21:"Attr.ForbiddenClasses";i:8;s:13:"Attr.ID.HTML5";i:-7;s:16:"Attr.IDBlacklist";i:9;s:22:"Attr.IDBlacklistRegexp";i:-1;s:13:"Attr.IDPrefix";i:1;s:18:"Attr.IDPrefixLocal";i:1;s:24:"AutoFormat.AutoParagraph";i:7;s:17:"AutoFormat.Custom";i:9;s:25:"AutoFormat.DisplayLinkURI";i:7;s:18:"AutoFormat.Linkify";i:7;s:33:"AutoFormat.PurifierLinkify.DocURL";i:1;s:37:"AutoFormatParam.PurifierLinkifyDocURL";O:8:"stdClass":2:{s:3:"key";s:33:"AutoFormat.PurifierLinkify.DocURL";s:7:"isAlias";b:1;}s:26:"AutoFormat.PurifierLinkify";i:7;s:32:"AutoFormat.RemoveEmpty.Predicate";i:10;s:44:"AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions";i:8;s:33:"AutoFormat.RemoveEmpty.RemoveNbsp";i:7;s:22:"AutoFormat.RemoveEmpty";i:7;s:39:"AutoFormat.RemoveSpansWithoutAttributes";i:7;s:19:"CSS.AllowDuplicates";i:7;s:18:"CSS.AllowImportant";i:7;s:15:"CSS.AllowTricky";i:7;s:16:"CSS.AllowedFonts";i:-8;s:21:"CSS.AllowedProperties";i:-8;s:17:"CSS.DefinitionRev";i:5;s:23:"CSS.ForbiddenProperties";i:8;s:16:"CSS.MaxImgLength";i:-1;s:15:"CSS.Proprietary";i:7;s:11:"CSS.Trusted";i:7;s:20:"Cache.DefinitionImpl";i:-1;s:20:"Core.DefinitionCache";O:8:"stdClass":2:{s:3:"key";s:20:"Cache.DefinitionImpl";s:7:"isAlias";b:1;}s:20:"Cache.SerializerPath";i:-1;s:27:"Cache.SerializerPermissions";i:-5;s:22:"Core.AggressivelyFixLt";i:7;s:29:"Core.AggressivelyRemoveScript";i:7;s:28:"Core.AllowHostnameUnderscore";i:7;s:18:"Core.CollectErrors";i:7;s:18:"Core.ColorKeywords";i:10;s:30:"Core.ConvertDocumentToFragment";i:7;s:24:"Core.AcceptFullDocuments";O:8:"stdClass":2:{s:3:"key";s:30:"Core.ConvertDocumentToFragment";s:7:"isAlias";b:1;}s:36:"Core.DirectLexLineNumberSyncInterval";i:5;s:20:"Core.DisableExcludes";i:7;s:15:"Core.EnableIDNA";i:7;s:13:"Core.Encoding";i:2;s:26:"Core.EscapeInvalidChildren";i:7;s:22:"Core.EscapeInvalidTags";i:7;s:29:"Core.EscapeNonASCIICharacters";i:7;s:19:"Core.HiddenElements";i:8;s:13:"Core.Language";i:1;s:24:"Core.LegacyEntityDecoder";i:7;s:14:"Core.LexerImpl";i:-11;s:24:"Core.MaintainLineNumbers";i:-7;s:22:"Core.NormalizeNewlines";i:7;s:21:"Core.RemoveInvalidImg";i:7;s:33:"Core.RemoveProcessingInstructions";i:7;s:25:"Core.RemoveScriptContents";i:-7;s:13:"Filter.Custom";i:9;s:34:"Filter.ExtractStyleBlocks.Escaping";i:7;s:33:"Filter.ExtractStyleBlocksEscaping";O:8:"stdClass":2:{s:3:"key";s:34:"Filter.ExtractStyleBlocks.Escaping";s:7:"isAlias";b:1;}s:38:"FilterParam.ExtractStyleBlocksEscaping";O:8:"stdClass":2:{s:3:"key";s:34:"Filter.ExtractStyleBlocks.Escaping";s:7:"isAlias";b:1;}s:31:"Filter.ExtractStyleBlocks.Scope";i:-1;s:30:"Filter.ExtractStyleBlocksScope";O:8:"stdClass":2:{s:3:"key";s:31:"Filter.ExtractStyleBlocks.Scope";s:7:"isAlias";b:1;}s:35:"FilterParam.ExtractStyleBlocksScope";O:8:"stdClass":2:{s:3:"key";s:31:"Filter.ExtractStyleBlocks.Scope";s:7:"isAlias";b:1;}s:34:"Filter.ExtractStyleBlocks.TidyImpl";i:-11;s:38:"FilterParam.ExtractStyleBlocksTidyImpl";O:8:"stdClass":2:{s:3:"key";s:34:"Filter.ExtractStyleBlocks.TidyImpl";s:7:"isAlias";b:1;}s:25:"Filter.ExtractStyleBlocks";i:7;s:14:"Filter.YouTube";i:7;s:12:"HTML.Allowed";i:-4;s:22:"HTML.AllowedAttributes";i:-8;s:20:"HTML.AllowedComments";i:8;s:26:"HTML.AllowedCommentsRegexp";i:-1;s:20:"HTML.AllowedElements";i:-8;s:19:"HTML.AllowedModules";i:-8;s:23:"HTML.Attr.Name.UseCDATA";i:7;s:17:"HTML.BlockWrapper";i:1;s:16:"HTML.CoreModules";i:8;s:18:"HTML.CustomDoctype";i:-1;s:17:"HTML.DefinitionID";i:-1;s:18:"HTML.DefinitionRev";i:5;s:12:"HTML.Doctype";O:8:"stdClass":3:{s:4:"type";i:1;s:10:"allow_null";b:1;s:7:"allowed";a:5:{s:22:"HTML 4.01 Transitional";b:1;s:16:"HTML 4.01 Strict";b:1;s:22:"XHTML 1.0 Transitional";b:1;s:16:"XHTML 1.0 Strict";b:1;s:9:"XHTML 1.1";b:1;}}s:25:"HTML.FlashAllowFullScreen";i:7;s:24:"HTML.ForbiddenAttributes";i:8;s:22:"HTML.ForbiddenElements";i:8;s:17:"HTML.MaxImgLength";i:-5;s:13:"HTML.Nofollow";i:7;s:11:"HTML.Parent";i:1;s:16:"HTML.Proprietary";i:7;s:14:"HTML.SafeEmbed";i:7;s:15:"HTML.SafeIframe";i:7;s:15:"HTML.SafeObject";i:7;s:18:"HTML.SafeScripting";i:8;s:11:"HTML.Strict";i:7;s:16:"HTML.TargetBlank";i:7;s:19:"HTML.TargetNoopener";i:7;s:21:"HTML.TargetNoreferrer";i:7;s:12:"HTML.TidyAdd";i:8;s:14:"HTML.TidyLevel";O:8:"stdClass":2:{s:4:"type";i:1;s:7:"allowed";a:4:{s:4:"none";b:1;s:5:"light";b:1;s:6:"medium";b:1;s:5:"heavy";b:1;}}s:15:"HTML.TidyRemove";i:8;s:12:"HTML.Trusted";i:7;s:10:"HTML.XHTML";i:7;s:10:"Core.XHTML";O:8:"stdClass":2:{s:3:"key";s:10:"HTML.XHTML";s:7:"isAlias";b:1;}s:28:"Output.CommentScriptContents";i:7;s:26:"Core.CommentScriptContents";O:8:"stdClass":2:{s:3:"key";s:28:"Output.CommentScriptContents";s:7:"isAlias";b:1;}s:19:"Output.FixInnerHTML";i:7;s:18:"Output.FlashCompat";i:7;s:14:"Output.Newline";i:-1;s:15:"Output.SortAttr";i:7;s:17:"Output.TidyFormat";i:7;s:15:"Core.TidyFormat";O:8:"stdClass":2:{s:3:"key";s:17:"Output.TidyFormat";s:7:"isAlias";b:1;}s:17:"Test.ForceNoIconv";i:7;s:18:"URI.AllowedSchemes";i:8;s:8:"URI.Base";i:-1;s:17:"URI.DefaultScheme";i:-1;s:16:"URI.DefinitionID";i:-1;s:17:"URI.DefinitionRev";i:5;s:11:"URI.Disable";i:7;s:15:"Attr.DisableURI";O:8:"stdClass":2:{s:3:"key";s:11:"URI.Disable";s:7:"isAlias";b:1;}s:19:"URI.DisableExternal";i:7;s:28:"URI.DisableExternalResources";i:7;s:20:"URI.DisableResources";i:7;s:8:"URI.Host";i:-1;s:17:"URI.HostBlacklist";i:9;s:16:"URI.MakeAbsolute";i:7;s:9:"URI.Munge";i:-1;s:18:"URI.MungeResources";i:7;s:18:"URI.MungeSecretKey";i:-1;s:26:"URI.OverrideAllowedSchemes";i:7;s:20:"URI.SafeIframeRegexp";i:-1;}} htmlpurifier/library/HTMLPurifier/ConfigSchema/ValidatorAtom.php 0000644 00000005444 14716425662 0021025 0 ustar 00 context = $context;
$this->obj = $obj;
$this->member = $member;
$this->contents =& $obj->$member;
}
/**
* @return HTMLPurifier_ConfigSchema_ValidatorAtom
*/
public function assertIsString()
{
if (!is_string($this->contents)) {
$this->error('must be a string');
}
return $this;
}
/**
* @return HTMLPurifier_ConfigSchema_ValidatorAtom
*/
public function assertIsBool()
{
if (!is_bool($this->contents)) {
$this->error('must be a boolean');
}
return $this;
}
/**
* @return HTMLPurifier_ConfigSchema_ValidatorAtom
*/
public function assertIsArray()
{
if (!is_array($this->contents)) {
$this->error('must be an array');
}
return $this;
}
/**
* @return HTMLPurifier_ConfigSchema_ValidatorAtom
*/
public function assertNotNull()
{
if ($this->contents === null) {
$this->error('must not be null');
}
return $this;
}
/**
* @return HTMLPurifier_ConfigSchema_ValidatorAtom
*/
public function assertAlnum()
{
$this->assertIsString();
if (!ctype_alnum($this->contents)) {
$this->error('must be alphanumeric');
}
return $this;
}
/**
* @return HTMLPurifier_ConfigSchema_ValidatorAtom
*/
public function assertNotEmpty()
{
if (empty($this->contents)) {
$this->error('must not be empty');
}
return $this;
}
/**
* @return HTMLPurifier_ConfigSchema_ValidatorAtom
*/
public function assertIsLookup()
{
$this->assertIsArray();
foreach ($this->contents as $v) {
if ($v !== true) {
$this->error('must be a lookup array');
}
}
return $this;
}
/**
* @param string $msg
* @throws HTMLPurifier_ConfigSchema_Exception
*/
protected function error($msg)
{
throw new HTMLPurifier_ConfigSchema_Exception(ucfirst($this->member) . ' in ' . $this->context . ' ' . $msg);
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/Interchange/Id.php 0000644 00000002061 14716425662 0021032 0 ustar 00 key = $key;
}
/**
* @return string
* @warning This is NOT magic, to ensure that people don't abuse SPL and
* cause problems for PHP 5.0 support.
*/
public function toString()
{
return $this->key;
}
/**
* @return string
*/
public function getRootNamespace()
{
return substr($this->key, 0, strpos($this->key, "."));
}
/**
* @return string
*/
public function getDirective()
{
return substr($this->key, strpos($this->key, ".") + 1);
}
/**
* @param string $id
* @return HTMLPurifier_ConfigSchema_Interchange_Id
*/
public static function make($id)
{
return new HTMLPurifier_ConfigSchema_Interchange_Id($id);
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/Interchange/Directive.php 0000644 00000003661 14716425662 0022423 0 ustar 00 true).
* Null if all values are allowed.
* @type array
*/
public $allowed;
/**
* List of aliases for the directive.
* e.g. array(new HTMLPurifier_ConfigSchema_Interchange_Id('Ns', 'Dir'))).
* @type HTMLPurifier_ConfigSchema_Interchange_Id[]
*/
public $aliases = array();
/**
* Hash of value aliases, e.g. array('alt' => 'real'). Null if value
* aliasing is disabled (necessary for non-scalar types).
* @type array
*/
public $valueAliases;
/**
* Version of HTML Purifier the directive was introduced, e.g. '1.3.1'.
* Null if the directive has always existed.
* @type string
*/
public $version;
/**
* ID of directive that supercedes this old directive.
* Null if not deprecated.
* @type HTMLPurifier_ConfigSchema_Interchange_Id
*/
public $deprecatedUse;
/**
* Version of HTML Purifier this directive was deprecated. Null if not
* deprecated.
* @type string
*/
public $deprecatedVersion;
/**
* List of external projects this directive depends on, e.g. array('CSSTidy').
* @type array
*/
public $external = array();
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/Interchange.php 0000644 00000002402 14716425662 0020475 0 ustar 00 array(directive info)
* @type HTMLPurifier_ConfigSchema_Interchange_Directive[]
*/
public $directives = array();
/**
* Adds a directive array to $directives
* @param HTMLPurifier_ConfigSchema_Interchange_Directive $directive
* @throws HTMLPurifier_ConfigSchema_Exception
*/
public function addDirective($directive)
{
if (isset($this->directives[$i = $directive->id->toString()])) {
throw new HTMLPurifier_ConfigSchema_Exception("Cannot redefine directive '$i'");
}
$this->directives[$i] = $directive;
}
/**
* Convenience function to perform standard validation. Throws exception
* on failed validation.
*/
public function validate()
{
$validator = new HTMLPurifier_ConfigSchema_Validator();
return $validator->validate($this);
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/Builder/ConfigSchema.php 0000644 00000002375 14716425662 0022173 0 ustar 00 directives as $d) {
$schema->add(
$d->id->key,
$d->default,
$d->type,
$d->typeAllowsNull
);
if ($d->allowed !== null) {
$schema->addAllowedValues(
$d->id->key,
$d->allowed
);
}
foreach ($d->aliases as $alias) {
$schema->addAlias(
$alias->key,
$d->id->key
);
}
if ($d->valueAliases !== null) {
$schema->addValueAliases(
$d->id->key,
$d->valueAliases
);
}
}
$schema->postProcess();
return $schema;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ConfigSchema/Builder/Xml.php 0000644 00000010424 14716425662 0020377 0 ustar 00 startElement('div');
$purifier = HTMLPurifier::getInstance();
$html = $purifier->purify($html);
$this->writeAttribute('xmlns', 'http://www.w3.org/1999/xhtml');
$this->writeRaw($html);
$this->endElement(); // div
}
/**
* @param mixed $var
* @return string
*/
protected function export($var)
{
if ($var === array()) {
return 'array()';
}
return var_export($var, true);
}
/**
* @param HTMLPurifier_ConfigSchema_Interchange $interchange
*/
public function build($interchange)
{
// global access, only use as last resort
$this->interchange = $interchange;
$this->setIndent(true);
$this->startDocument('1.0', 'UTF-8');
$this->startElement('configdoc');
$this->writeElement('title', $interchange->name);
foreach ($interchange->directives as $directive) {
$this->buildDirective($directive);
}
if ($this->namespace) {
$this->endElement();
} // namespace
$this->endElement(); // configdoc
$this->flush();
}
/**
* @param HTMLPurifier_ConfigSchema_Interchange_Directive $directive
*/
public function buildDirective($directive)
{
// Kludge, although I suppose having a notion of a "root namespace"
// certainly makes things look nicer when documentation is built.
// Depends on things being sorted.
if (!$this->namespace || $this->namespace !== $directive->id->getRootNamespace()) {
if ($this->namespace) {
$this->endElement();
} // namespace
$this->namespace = $directive->id->getRootNamespace();
$this->startElement('namespace');
$this->writeAttribute('id', $this->namespace);
$this->writeElement('name', $this->namespace);
}
$this->startElement('directive');
$this->writeAttribute('id', $directive->id->toString());
$this->writeElement('name', $directive->id->getDirective());
$this->startElement('aliases');
foreach ($directive->aliases as $alias) {
$this->writeElement('alias', $alias->toString());
}
$this->endElement(); // aliases
$this->startElement('constraints');
if ($directive->version) {
$this->writeElement('version', $directive->version);
}
$this->startElement('type');
if ($directive->typeAllowsNull) {
$this->writeAttribute('allow-null', 'yes');
}
$this->text($directive->type);
$this->endElement(); // type
if ($directive->allowed) {
$this->startElement('allowed');
foreach ($directive->allowed as $value => $x) {
$this->writeElement('value', $value);
}
$this->endElement(); // allowed
}
$this->writeElement('default', $this->export($directive->default));
$this->writeAttribute('xml:space', 'preserve');
if ($directive->external) {
$this->startElement('external');
foreach ($directive->external as $project) {
$this->writeElement('project', $project);
}
$this->endElement();
}
$this->endElement(); // constraints
if ($directive->deprecatedVersion) {
$this->startElement('deprecated');
$this->writeElement('version', $directive->deprecatedVersion);
$this->writeElement('use', $directive->deprecatedUse->toString());
$this->endElement(); // deprecated
}
$this->startElement('description');
$this->writeHTMLDiv($directive->description);
$this->endElement(); // description
$this->endElement(); // directive
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/CSSDefinition.php 0000644 00000041565 14716425662 0016376 0 ustar 00 info['text-align'] = new HTMLPurifier_AttrDef_Enum(
array('left', 'right', 'center', 'justify'),
false
);
$border_style =
$this->info['border-bottom-style'] =
$this->info['border-right-style'] =
$this->info['border-left-style'] =
$this->info['border-top-style'] = new HTMLPurifier_AttrDef_Enum(
array(
'none',
'hidden',
'dotted',
'dashed',
'solid',
'double',
'groove',
'ridge',
'inset',
'outset'
),
false
);
$this->info['border-style'] = new HTMLPurifier_AttrDef_CSS_Multiple($border_style);
$this->info['clear'] = new HTMLPurifier_AttrDef_Enum(
array('none', 'left', 'right', 'both'),
false
);
$this->info['float'] = new HTMLPurifier_AttrDef_Enum(
array('none', 'left', 'right'),
false
);
$this->info['font-style'] = new HTMLPurifier_AttrDef_Enum(
array('normal', 'italic', 'oblique'),
false
);
$this->info['font-variant'] = new HTMLPurifier_AttrDef_Enum(
array('normal', 'small-caps'),
false
);
$uri_or_none = new HTMLPurifier_AttrDef_CSS_Composite(
array(
new HTMLPurifier_AttrDef_Enum(array('none')),
new HTMLPurifier_AttrDef_CSS_URI()
)
);
$this->info['list-style-position'] = new HTMLPurifier_AttrDef_Enum(
array('inside', 'outside'),
false
);
$this->info['list-style-type'] = new HTMLPurifier_AttrDef_Enum(
array(
'disc',
'circle',
'square',
'decimal',
'lower-roman',
'upper-roman',
'lower-alpha',
'upper-alpha',
'none'
),
false
);
$this->info['list-style-image'] = $uri_or_none;
$this->info['list-style'] = new HTMLPurifier_AttrDef_CSS_ListStyle($config);
$this->info['text-transform'] = new HTMLPurifier_AttrDef_Enum(
array('capitalize', 'uppercase', 'lowercase', 'none'),
false
);
$this->info['color'] = new HTMLPurifier_AttrDef_CSS_Color();
$this->info['background-image'] = $uri_or_none;
$this->info['background-repeat'] = new HTMLPurifier_AttrDef_Enum(
array('repeat', 'repeat-x', 'repeat-y', 'no-repeat')
);
$this->info['background-attachment'] = new HTMLPurifier_AttrDef_Enum(
array('scroll', 'fixed')
);
$this->info['background-position'] = new HTMLPurifier_AttrDef_CSS_BackgroundPosition();
$border_color =
$this->info['border-top-color'] =
$this->info['border-bottom-color'] =
$this->info['border-left-color'] =
$this->info['border-right-color'] =
$this->info['background-color'] = new HTMLPurifier_AttrDef_CSS_Composite(
array(
new HTMLPurifier_AttrDef_Enum(array('transparent')),
new HTMLPurifier_AttrDef_CSS_Color()
)
);
$this->info['background'] = new HTMLPurifier_AttrDef_CSS_Background($config);
$this->info['border-color'] = new HTMLPurifier_AttrDef_CSS_Multiple($border_color);
$border_width =
$this->info['border-top-width'] =
$this->info['border-bottom-width'] =
$this->info['border-left-width'] =
$this->info['border-right-width'] = new HTMLPurifier_AttrDef_CSS_Composite(
array(
new HTMLPurifier_AttrDef_Enum(array('thin', 'medium', 'thick')),
new HTMLPurifier_AttrDef_CSS_Length('0') //disallow negative
)
);
$this->info['border-width'] = new HTMLPurifier_AttrDef_CSS_Multiple($border_width);
$this->info['letter-spacing'] = new HTMLPurifier_AttrDef_CSS_Composite(
array(
new HTMLPurifier_AttrDef_Enum(array('normal')),
new HTMLPurifier_AttrDef_CSS_Length()
)
);
$this->info['word-spacing'] = new HTMLPurifier_AttrDef_CSS_Composite(
array(
new HTMLPurifier_AttrDef_Enum(array('normal')),
new HTMLPurifier_AttrDef_CSS_Length()
)
);
$this->info['font-size'] = new HTMLPurifier_AttrDef_CSS_Composite(
array(
new HTMLPurifier_AttrDef_Enum(
array(
'xx-small',
'x-small',
'small',
'medium',
'large',
'x-large',
'xx-large',
'larger',
'smaller'
)
),
new HTMLPurifier_AttrDef_CSS_Percentage(),
new HTMLPurifier_AttrDef_CSS_Length()
)
);
$this->info['line-height'] = new HTMLPurifier_AttrDef_CSS_Composite(
array(
new HTMLPurifier_AttrDef_Enum(array('normal')),
new HTMLPurifier_AttrDef_CSS_Number(true), // no negatives
new HTMLPurifier_AttrDef_CSS_Length('0'),
new HTMLPurifier_AttrDef_CSS_Percentage(true)
)
);
$margin =
$this->info['margin-top'] =
$this->info['margin-bottom'] =
$this->info['margin-left'] =
$this->info['margin-right'] = new HTMLPurifier_AttrDef_CSS_Composite(
array(
new HTMLPurifier_AttrDef_CSS_Length(),
new HTMLPurifier_AttrDef_CSS_Percentage(),
new HTMLPurifier_AttrDef_Enum(array('auto'))
)
);
$this->info['margin'] = new HTMLPurifier_AttrDef_CSS_Multiple($margin);
// non-negative
$padding =
$this->info['padding-top'] =
$this->info['padding-bottom'] =
$this->info['padding-left'] =
$this->info['padding-right'] = new HTMLPurifier_AttrDef_CSS_Composite(
array(
new HTMLPurifier_AttrDef_CSS_Length('0'),
new HTMLPurifier_AttrDef_CSS_Percentage(true)
)
);
$this->info['padding'] = new HTMLPurifier_AttrDef_CSS_Multiple($padding);
$this->info['text-indent'] = new HTMLPurifier_AttrDef_CSS_Composite(
array(
new HTMLPurifier_AttrDef_CSS_Length(),
new HTMLPurifier_AttrDef_CSS_Percentage()
)
);
$trusted_wh = new HTMLPurifier_AttrDef_CSS_Composite(
array(
new HTMLPurifier_AttrDef_CSS_Length('0'),
new HTMLPurifier_AttrDef_CSS_Percentage(true),
new HTMLPurifier_AttrDef_Enum(array('auto'))
)
);
$max = $config->get('CSS.MaxImgLength');
$this->info['min-width'] =
$this->info['max-width'] =
$this->info['min-height'] =
$this->info['max-height'] =
$this->info['width'] =
$this->info['height'] =
$max === null ?
$trusted_wh :
new HTMLPurifier_AttrDef_Switch(
'img',
// For img tags:
new HTMLPurifier_AttrDef_CSS_Composite(
array(
new HTMLPurifier_AttrDef_CSS_Length('0', $max),
new HTMLPurifier_AttrDef_Enum(array('auto'))
)
),
// For everyone else:
$trusted_wh
);
$this->info['text-decoration'] = new HTMLPurifier_AttrDef_CSS_TextDecoration();
$this->info['font-family'] = new HTMLPurifier_AttrDef_CSS_FontFamily();
// this could use specialized code
$this->info['font-weight'] = new HTMLPurifier_AttrDef_Enum(
array(
'normal',
'bold',
'bolder',
'lighter',
'100',
'200',
'300',
'400',
'500',
'600',
'700',
'800',
'900'
),
false
);
// MUST be called after other font properties, as it references
// a CSSDefinition object
$this->info['font'] = new HTMLPurifier_AttrDef_CSS_Font($config);
// same here
$this->info['border'] =
$this->info['border-bottom'] =
$this->info['border-top'] =
$this->info['border-left'] =
$this->info['border-right'] = new HTMLPurifier_AttrDef_CSS_Border($config);
$this->info['border-collapse'] = new HTMLPurifier_AttrDef_Enum(
array('collapse', 'separate')
);
$this->info['caption-side'] = new HTMLPurifier_AttrDef_Enum(
array('top', 'bottom')
);
$this->info['table-layout'] = new HTMLPurifier_AttrDef_Enum(
array('auto', 'fixed')
);
$this->info['vertical-align'] = new HTMLPurifier_AttrDef_CSS_Composite(
array(
new HTMLPurifier_AttrDef_Enum(
array(
'baseline',
'sub',
'super',
'top',
'text-top',
'middle',
'bottom',
'text-bottom'
)
),
new HTMLPurifier_AttrDef_CSS_Length(),
new HTMLPurifier_AttrDef_CSS_Percentage()
)
);
$this->info['border-spacing'] = new HTMLPurifier_AttrDef_CSS_Multiple(new HTMLPurifier_AttrDef_CSS_Length(), 2);
// These CSS properties don't work on many browsers, but we live
// in THE FUTURE!
$this->info['white-space'] = new HTMLPurifier_AttrDef_Enum(
array('nowrap', 'normal', 'pre', 'pre-wrap', 'pre-line')
);
if ($config->get('CSS.Proprietary')) {
$this->doSetupProprietary($config);
}
if ($config->get('CSS.AllowTricky')) {
$this->doSetupTricky($config);
}
if ($config->get('CSS.Trusted')) {
$this->doSetupTrusted($config);
}
$allow_important = $config->get('CSS.AllowImportant');
// wrap all attr-defs with decorator that handles !important
foreach ($this->info as $k => $v) {
$this->info[$k] = new HTMLPurifier_AttrDef_CSS_ImportantDecorator($v, $allow_important);
}
$this->setupConfigStuff($config);
}
/**
* @param HTMLPurifier_Config $config
*/
protected function doSetupProprietary($config)
{
// Internet Explorer only scrollbar colors
$this->info['scrollbar-arrow-color'] = new HTMLPurifier_AttrDef_CSS_Color();
$this->info['scrollbar-base-color'] = new HTMLPurifier_AttrDef_CSS_Color();
$this->info['scrollbar-darkshadow-color'] = new HTMLPurifier_AttrDef_CSS_Color();
$this->info['scrollbar-face-color'] = new HTMLPurifier_AttrDef_CSS_Color();
$this->info['scrollbar-highlight-color'] = new HTMLPurifier_AttrDef_CSS_Color();
$this->info['scrollbar-shadow-color'] = new HTMLPurifier_AttrDef_CSS_Color();
// vendor specific prefixes of opacity
$this->info['-moz-opacity'] = new HTMLPurifier_AttrDef_CSS_AlphaValue();
$this->info['-khtml-opacity'] = new HTMLPurifier_AttrDef_CSS_AlphaValue();
// only opacity, for now
$this->info['filter'] = new HTMLPurifier_AttrDef_CSS_Filter();
// more CSS3
$this->info['page-break-after'] =
$this->info['page-break-before'] = new HTMLPurifier_AttrDef_Enum(
array(
'auto',
'always',
'avoid',
'left',
'right'
)
);
$this->info['page-break-inside'] = new HTMLPurifier_AttrDef_Enum(array('auto', 'avoid'));
$border_radius = new HTMLPurifier_AttrDef_CSS_Composite(
array(
new HTMLPurifier_AttrDef_CSS_Percentage(true), // disallow negative
new HTMLPurifier_AttrDef_CSS_Length('0') // disallow negative
));
$this->info['border-top-left-radius'] =
$this->info['border-top-right-radius'] =
$this->info['border-bottom-right-radius'] =
$this->info['border-bottom-left-radius'] = new HTMLPurifier_AttrDef_CSS_Multiple($border_radius, 2);
// TODO: support SLASH syntax
$this->info['border-radius'] = new HTMLPurifier_AttrDef_CSS_Multiple($border_radius, 4);
}
/**
* @param HTMLPurifier_Config $config
*/
protected function doSetupTricky($config)
{
$this->info['display'] = new HTMLPurifier_AttrDef_Enum(
array(
'inline',
'block',
'list-item',
'run-in',
'compact',
'marker',
'table',
'inline-block',
'inline-table',
'table-row-group',
'table-header-group',
'table-footer-group',
'table-row',
'table-column-group',
'table-column',
'table-cell',
'table-caption',
'none'
)
);
$this->info['visibility'] = new HTMLPurifier_AttrDef_Enum(
array('visible', 'hidden', 'collapse')
);
$this->info['overflow'] = new HTMLPurifier_AttrDef_Enum(array('visible', 'hidden', 'auto', 'scroll'));
$this->info['opacity'] = new HTMLPurifier_AttrDef_CSS_AlphaValue();
}
/**
* @param HTMLPurifier_Config $config
*/
protected function doSetupTrusted($config)
{
$this->info['position'] = new HTMLPurifier_AttrDef_Enum(
array('static', 'relative', 'absolute', 'fixed')
);
$this->info['top'] =
$this->info['left'] =
$this->info['right'] =
$this->info['bottom'] = new HTMLPurifier_AttrDef_CSS_Composite(
array(
new HTMLPurifier_AttrDef_CSS_Length(),
new HTMLPurifier_AttrDef_CSS_Percentage(),
new HTMLPurifier_AttrDef_Enum(array('auto')),
)
);
$this->info['z-index'] = new HTMLPurifier_AttrDef_CSS_Composite(
array(
new HTMLPurifier_AttrDef_Integer(),
new HTMLPurifier_AttrDef_Enum(array('auto')),
)
);
}
/**
* Performs extra config-based processing. Based off of
* HTMLPurifier_HTMLDefinition.
* @param HTMLPurifier_Config $config
* @todo Refactor duplicate elements into common class (probably using
* composition, not inheritance).
*/
protected function setupConfigStuff($config)
{
// setup allowed elements
$support = "(for information on implementing this, see the " .
"support forums) ";
$allowed_properties = $config->get('CSS.AllowedProperties');
if ($allowed_properties !== null) {
foreach ($this->info as $name => $d) {
if (!isset($allowed_properties[$name])) {
unset($this->info[$name]);
}
unset($allowed_properties[$name]);
}
// emit errors
foreach ($allowed_properties as $name => $d) {
// :TODO: Is this htmlspecialchars() call really necessary?
$name = htmlspecialchars($name);
trigger_error("Style attribute '$name' is not supported $support", E_USER_WARNING);
}
}
$forbidden_properties = $config->get('CSS.ForbiddenProperties');
if ($forbidden_properties !== null) {
foreach ($this->info as $name => $d) {
if (isset($forbidden_properties[$name])) {
unset($this->info[$name]);
}
}
}
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/Generator.php 0000644 00000024013 14716425662 0015650 0 ustar 00 tags.
* @type bool
*/
private $_scriptFix = false;
/**
* Cache of HTMLDefinition during HTML output to determine whether or
* not attributes should be minimized.
* @type HTMLPurifier_HTMLDefinition
*/
private $_def;
/**
* Cache of %Output.SortAttr.
* @type bool
*/
private $_sortAttr;
/**
* Cache of %Output.FlashCompat.
* @type bool
*/
private $_flashCompat;
/**
* Cache of %Output.FixInnerHTML.
* @type bool
*/
private $_innerHTMLFix;
/**
* Stack for keeping track of object information when outputting IE
* compatibility code.
* @type array
*/
private $_flashStack = array();
/**
* Configuration for the generator
* @type HTMLPurifier_Config
*/
protected $config;
/**
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
*/
public function __construct($config, $context)
{
$this->config = $config;
$this->_scriptFix = $config->get('Output.CommentScriptContents');
$this->_innerHTMLFix = $config->get('Output.FixInnerHTML');
$this->_sortAttr = $config->get('Output.SortAttr');
$this->_flashCompat = $config->get('Output.FlashCompat');
$this->_def = $config->getHTMLDefinition();
$this->_xhtml = $this->_def->doctype->xml;
}
/**
* Generates HTML from an array of tokens.
* @param HTMLPurifier_Token[] $tokens Array of HTMLPurifier_Token
* @return string Generated HTML
*/
public function generateFromTokens($tokens)
{
if (!$tokens) {
return '';
}
// Basic algorithm
$html = '';
for ($i = 0, $size = count($tokens); $i < $size; $i++) {
if ($this->_scriptFix && $tokens[$i]->name === 'script'
&& $i + 2 < $size && $tokens[$i+2] instanceof HTMLPurifier_Token_End) {
// script special case
// the contents of the script block must be ONE token
// for this to work.
$html .= $this->generateFromToken($tokens[$i++]);
$html .= $this->generateScriptFromToken($tokens[$i++]);
}
$html .= $this->generateFromToken($tokens[$i]);
}
// Tidy cleanup
if (extension_loaded('tidy') && $this->config->get('Output.TidyFormat')) {
$tidy = new Tidy;
$tidy->parseString(
$html,
array(
'indent'=> true,
'output-xhtml' => $this->_xhtml,
'show-body-only' => true,
'indent-spaces' => 2,
'wrap' => 68,
),
'utf8'
);
$tidy->cleanRepair();
$html = (string) $tidy; // explicit cast necessary
}
// Normalize newlines to system defined value
if ($this->config->get('Core.NormalizeNewlines')) {
$nl = $this->config->get('Output.Newline');
if ($nl === null) {
$nl = PHP_EOL;
}
if ($nl !== "\n") {
$html = str_replace("\n", $nl, $html);
}
}
return $html;
}
/**
* Generates HTML from a single token.
* @param HTMLPurifier_Token $token HTMLPurifier_Token object.
* @return string Generated HTML
*/
public function generateFromToken($token)
{
if (!$token instanceof HTMLPurifier_Token) {
trigger_error('Cannot generate HTML from non-HTMLPurifier_Token object', E_USER_WARNING);
return '';
} elseif ($token instanceof HTMLPurifier_Token_Start) {
$attr = $this->generateAttributes($token->attr, $token->name);
if ($this->_flashCompat) {
if ($token->name == "object") {
$flash = new stdClass();
$flash->attr = $token->attr;
$flash->param = array();
$this->_flashStack[] = $flash;
}
}
return '<' . $token->name . ($attr ? ' ' : '') . $attr . '>';
} elseif ($token instanceof HTMLPurifier_Token_End) {
$_extra = '';
if ($this->_flashCompat) {
if ($token->name == "object" && !empty($this->_flashStack)) {
// doesn't do anything for now
}
}
return $_extra . '' . $token->name . '>';
} elseif ($token instanceof HTMLPurifier_Token_Empty) {
if ($this->_flashCompat && $token->name == "param" && !empty($this->_flashStack)) {
$this->_flashStack[count($this->_flashStack)-1]->param[$token->attr['name']] = $token->attr['value'];
}
$attr = $this->generateAttributes($token->attr, $token->name);
return '<' . $token->name . ($attr ? ' ' : '') . $attr .
( $this->_xhtml ? ' /': '' ) //
v.
. '>';
} elseif ($token instanceof HTMLPurifier_Token_Text) {
return $this->escape($token->data, ENT_NOQUOTES);
} elseif ($token instanceof HTMLPurifier_Token_Comment) {
return '';
} else {
return '';
}
}
/**
* Special case processor for the contents of script tags
* @param HTMLPurifier_Token $token HTMLPurifier_Token object.
* @return string
* @warning This runs into problems if there's already a literal
* --> somewhere inside the script contents.
*/
public function generateScriptFromToken($token)
{
if (!$token instanceof HTMLPurifier_Token_Text) {
return $this->generateFromToken($token);
}
// Thanks
$data = preg_replace('#//\s*$#', '', $token->data);
return '';
}
/**
* Generates attribute declarations from attribute array.
* @note This does not include the leading or trailing space.
* @param array $assoc_array_of_attributes Attribute array
* @param string $element Name of element attributes are for, used to check
* attribute minimization.
* @return string Generated HTML fragment for insertion.
*/
public function generateAttributes($assoc_array_of_attributes, $element = '')
{
$html = '';
if ($this->_sortAttr) {
ksort($assoc_array_of_attributes);
}
foreach ($assoc_array_of_attributes as $key => $value) {
if (!$this->_xhtml) {
// Remove namespaced attributes
if (strpos($key, ':') !== false) {
continue;
}
// Check if we should minimize the attribute: val="val" -> val
if ($element && !empty($this->_def->info[$element]->attr[$key]->minimized)) {
$html .= $key . ' ';
continue;
}
}
// Workaround for Internet Explorer innerHTML bug.
// Essentially, Internet Explorer, when calculating
// innerHTML, omits quotes if there are no instances of
// angled brackets, quotes or spaces. However, when parsing
// HTML (for example, when you assign to innerHTML), it
// treats backticks as quotes. Thus,
//
// becomes
//
// becomes
//
// Fortunately, all we need to do is trigger an appropriate
// quoting style, which we do by adding an extra space.
// This also is consistent with the W3C spec, which states
// that user agents may ignore leading or trailing
// whitespace (in fact, most don't, at least for attributes
// like alt, but an extra space at the end is barely
// noticeable). Still, we have a configuration knob for
// this, since this transformation is not necesary if you
// don't process user input with innerHTML or you don't plan
// on supporting Internet Explorer.
if ($this->_innerHTMLFix) {
if (strpos($value, '`') !== false) {
// check if correct quoting style would not already be
// triggered
if (strcspn($value, '"\' <>') === strlen($value)) {
// protect!
$value .= ' ';
}
}
}
$html .= $key.'="'.$this->escape($value).'" ';
}
return rtrim($html);
}
/**
* Escapes raw text data.
* @todo This really ought to be protected, but until we have a facility
* for properly generating HTML here w/o using tokens, it stays
* public.
* @param string $string String data to escape for HTML.
* @param int $quote Quoting style, like htmlspecialchars. ENT_NOQUOTES is
* permissible for non-attribute output.
* @return string escaped data.
*/
public function escape($string, $quote = null)
{
// Workaround for APC bug on Mac Leopard reported by sidepodcast
// http://htmlpurifier.org/phorum/read.php?3,4823,4846
if ($quote === null) {
$quote = ENT_COMPAT;
}
return htmlspecialchars($string, $quote, 'UTF-8');
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/Zipper.php 0000644 00000010532 14716425662 0015174 0 ustar 00 front = $front;
$this->back = $back;
}
/**
* Creates a zipper from an array, with a hole in the
* 0-index position.
* @param Array to zipper-ify.
* @return Tuple of zipper and element of first position.
*/
static public function fromArray($array) {
$z = new self(array(), array_reverse($array));
$t = $z->delete(); // delete the "dummy hole"
return array($z, $t);
}
/**
* Convert zipper back into a normal array, optionally filling in
* the hole with a value. (Usually you should supply a $t, unless you
* are at the end of the array.)
*/
public function toArray($t = NULL) {
$a = $this->front;
if ($t !== NULL) $a[] = $t;
for ($i = count($this->back)-1; $i >= 0; $i--) {
$a[] = $this->back[$i];
}
return $a;
}
/**
* Move hole to the next element.
* @param $t Element to fill hole with
* @return Original contents of new hole.
*/
public function next($t) {
if ($t !== NULL) array_push($this->front, $t);
return empty($this->back) ? NULL : array_pop($this->back);
}
/**
* Iterated hole advancement.
* @param $t Element to fill hole with
* @param $i How many forward to advance hole
* @return Original contents of new hole, i away
*/
public function advance($t, $n) {
for ($i = 0; $i < $n; $i++) {
$t = $this->next($t);
}
return $t;
}
/**
* Move hole to the previous element
* @param $t Element to fill hole with
* @return Original contents of new hole.
*/
public function prev($t) {
if ($t !== NULL) array_push($this->back, $t);
return empty($this->front) ? NULL : array_pop($this->front);
}
/**
* Delete contents of current hole, shifting hole to
* next element.
* @return Original contents of new hole.
*/
public function delete() {
return empty($this->back) ? NULL : array_pop($this->back);
}
/**
* Returns true if we are at the end of the list.
* @return bool
*/
public function done() {
return empty($this->back);
}
/**
* Insert element before hole.
* @param Element to insert
*/
public function insertBefore($t) {
if ($t !== NULL) array_push($this->front, $t);
}
/**
* Insert element after hole.
* @param Element to insert
*/
public function insertAfter($t) {
if ($t !== NULL) array_push($this->back, $t);
}
/**
* Splice in multiple elements at hole. Functional specification
* in terms of array_splice:
*
* $arr1 = $arr;
* $old1 = array_splice($arr1, $i, $delete, $replacement);
*
* list($z, $t) = HTMLPurifier_Zipper::fromArray($arr);
* $t = $z->advance($t, $i);
* list($old2, $t) = $z->splice($t, $delete, $replacement);
* $arr2 = $z->toArray($t);
*
* assert($old1 === $old2);
* assert($arr1 === $arr2);
*
* NB: the absolute index location after this operation is
* *unchanged!*
*
* @param Current contents of hole.
*/
public function splice($t, $delete, $replacement) {
// delete
$old = array();
$r = $t;
for ($i = $delete; $i > 0; $i--) {
$old[] = $r;
$r = $this->delete();
}
// insert
for ($i = count($replacement)-1; $i >= 0; $i--) {
$this->insertAfter($r);
$r = $replacement[$i];
}
return array($old, $r);
}
}
htmlpurifier/library/HTMLPurifier/Language.php 0000644 00000013656 14716425662 0015460 0 ustar 00 config = $config;
$this->context = $context;
}
/**
* Loads language object with necessary info from factory cache
* @note This is a lazy loader
*/
public function load()
{
if ($this->_loaded) {
return;
}
$factory = HTMLPurifier_LanguageFactory::instance();
$factory->loadLanguage($this->code);
foreach ($factory->keys as $key) {
$this->$key = $factory->cache[$this->code][$key];
}
$this->_loaded = true;
}
/**
* Retrieves a localised message.
* @param string $key string identifier of message
* @return string localised message
*/
public function getMessage($key)
{
if (!$this->_loaded) {
$this->load();
}
if (!isset($this->messages[$key])) {
return "[$key]";
}
return $this->messages[$key];
}
/**
* Retrieves a localised error name.
* @param int $int error number, corresponding to PHP's error reporting
* @return string localised message
*/
public function getErrorName($int)
{
if (!$this->_loaded) {
$this->load();
}
if (!isset($this->errorNames[$int])) {
return "[Error: $int]";
}
return $this->errorNames[$int];
}
/**
* Converts an array list into a string readable representation
* @param array $array
* @return string
*/
public function listify($array)
{
$sep = $this->getMessage('Item separator');
$sep_last = $this->getMessage('Item separator last');
$ret = '';
for ($i = 0, $c = count($array); $i < $c; $i++) {
if ($i == 0) {
} elseif ($i + 1 < $c) {
$ret .= $sep;
} else {
$ret .= $sep_last;
}
$ret .= $array[$i];
}
return $ret;
}
/**
* Formats a localised message with passed parameters
* @param string $key string identifier of message
* @param array $args Parameters to substitute in
* @return string localised message
* @todo Implement conditionals? Right now, some messages make
* reference to line numbers, but those aren't always available
*/
public function formatMessage($key, $args = array())
{
if (!$this->_loaded) {
$this->load();
}
if (!isset($this->messages[$key])) {
return "[$key]";
}
$raw = $this->messages[$key];
$subst = array();
$generator = false;
foreach ($args as $i => $value) {
if (is_object($value)) {
if ($value instanceof HTMLPurifier_Token) {
// factor this out some time
if (!$generator) {
$generator = $this->context->get('Generator');
}
if (isset($value->name)) {
$subst['$'.$i.'.Name'] = $value->name;
}
if (isset($value->data)) {
$subst['$'.$i.'.Data'] = $value->data;
}
$subst['$'.$i.'.Compact'] =
$subst['$'.$i.'.Serialized'] = $generator->generateFromToken($value);
// a more complex algorithm for compact representation
// could be introduced for all types of tokens. This
// may need to be factored out into a dedicated class
if (!empty($value->attr)) {
$stripped_token = clone $value;
$stripped_token->attr = array();
$subst['$'.$i.'.Compact'] = $generator->generateFromToken($stripped_token);
}
$subst['$'.$i.'.Line'] = $value->line ? $value->line : 'unknown';
}
continue;
} elseif (is_array($value)) {
$keys = array_keys($value);
if (array_keys($keys) === $keys) {
// list
$subst['$'.$i] = $this->listify($value);
} else {
// associative array
// no $i implementation yet, sorry
$subst['$'.$i.'.Keys'] = $this->listify($keys);
$subst['$'.$i.'.Values'] = $this->listify(array_values($value));
}
continue;
}
$subst['$' . $i] = $value;
}
return strtr($raw, $subst);
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/EntityLookup/entities.ser 0000644 00000012277 14716425662 0020227 0 ustar 00 a:253:{s:4:"fnof";s:2:"ƒ";s:5:"Alpha";s:2:"Α";s:4:"Beta";s:2:"Β";s:5:"Gamma";s:2:"Γ";s:5:"Delta";s:2:"Δ";s:7:"Epsilon";s:2:"Ε";s:4:"Zeta";s:2:"Ζ";s:3:"Eta";s:2:"Η";s:5:"Theta";s:2:"Θ";s:4:"Iota";s:2:"Ι";s:5:"Kappa";s:2:"Κ";s:6:"Lambda";s:2:"Λ";s:2:"Mu";s:2:"Μ";s:2:"Nu";s:2:"Ν";s:2:"Xi";s:2:"Ξ";s:7:"Omicron";s:2:"Ο";s:2:"Pi";s:2:"Π";s:3:"Rho";s:2:"Ρ";s:5:"Sigma";s:2:"Σ";s:3:"Tau";s:2:"Τ";s:7:"Upsilon";s:2:"Υ";s:3:"Phi";s:2:"Φ";s:3:"Chi";s:2:"Χ";s:3:"Psi";s:2:"Ψ";s:5:"Omega";s:2:"Ω";s:5:"alpha";s:2:"α";s:4:"beta";s:2:"β";s:5:"gamma";s:2:"γ";s:5:"delta";s:2:"δ";s:7:"epsilon";s:2:"ε";s:4:"zeta";s:2:"ζ";s:3:"eta";s:2:"η";s:5:"theta";s:2:"θ";s:4:"iota";s:2:"ι";s:5:"kappa";s:2:"κ";s:6:"lambda";s:2:"λ";s:2:"mu";s:2:"μ";s:2:"nu";s:2:"ν";s:2:"xi";s:2:"ξ";s:7:"omicron";s:2:"ο";s:2:"pi";s:2:"π";s:3:"rho";s:2:"ρ";s:6:"sigmaf";s:2:"ς";s:5:"sigma";s:2:"σ";s:3:"tau";s:2:"τ";s:7:"upsilon";s:2:"υ";s:3:"phi";s:2:"φ";s:3:"chi";s:2:"χ";s:3:"psi";s:2:"ψ";s:5:"omega";s:2:"ω";s:8:"thetasym";s:2:"ϑ";s:5:"upsih";s:2:"ϒ";s:3:"piv";s:2:"ϖ";s:4:"bull";s:3:"•";s:6:"hellip";s:3:"…";s:5:"prime";s:3:"′";s:5:"Prime";s:3:"″";s:5:"oline";s:3:"‾";s:5:"frasl";s:3:"⁄";s:6:"weierp";s:3:"℘";s:5:"image";s:3:"ℑ";s:4:"real";s:3:"ℜ";s:5:"trade";s:3:"™";s:7:"alefsym";s:3:"ℵ";s:4:"larr";s:3:"←";s:4:"uarr";s:3:"↑";s:4:"rarr";s:3:"→";s:4:"darr";s:3:"↓";s:4:"harr";s:3:"↔";s:5:"crarr";s:3:"↵";s:4:"lArr";s:3:"⇐";s:4:"uArr";s:3:"⇑";s:4:"rArr";s:3:"⇒";s:4:"dArr";s:3:"⇓";s:4:"hArr";s:3:"⇔";s:6:"forall";s:3:"∀";s:4:"part";s:3:"∂";s:5:"exist";s:3:"∃";s:5:"empty";s:3:"∅";s:5:"nabla";s:3:"∇";s:4:"isin";s:3:"∈";s:5:"notin";s:3:"∉";s:2:"ni";s:3:"∋";s:4:"prod";s:3:"∏";s:3:"sum";s:3:"∑";s:5:"minus";s:3:"−";s:6:"lowast";s:3:"∗";s:5:"radic";s:3:"√";s:4:"prop";s:3:"∝";s:5:"infin";s:3:"∞";s:3:"ang";s:3:"∠";s:3:"and";s:3:"∧";s:2:"or";s:3:"∨";s:3:"cap";s:3:"∩";s:3:"cup";s:3:"∪";s:3:"int";s:3:"∫";s:6:"there4";s:3:"∴";s:3:"sim";s:3:"∼";s:4:"cong";s:3:"≅";s:5:"asymp";s:3:"≈";s:2:"ne";s:3:"≠";s:5:"equiv";s:3:"≡";s:2:"le";s:3:"≤";s:2:"ge";s:3:"≥";s:3:"sub";s:3:"⊂";s:3:"sup";s:3:"⊃";s:4:"nsub";s:3:"⊄";s:4:"sube";s:3:"⊆";s:4:"supe";s:3:"⊇";s:5:"oplus";s:3:"⊕";s:6:"otimes";s:3:"⊗";s:4:"perp";s:3:"⊥";s:4:"sdot";s:3:"⋅";s:5:"lceil";s:3:"⌈";s:5:"rceil";s:3:"⌉";s:6:"lfloor";s:3:"⌊";s:6:"rfloor";s:3:"⌋";s:4:"lang";s:3:"〈";s:4:"rang";s:3:"〉";s:3:"loz";s:3:"◊";s:6:"spades";s:3:"♠";s:5:"clubs";s:3:"♣";s:6:"hearts";s:3:"♥";s:5:"diams";s:3:"♦";s:4:"quot";s:1:""";s:3:"amp";s:1:"&";s:2:"lt";s:1:"<";s:2:"gt";s:1:">";s:4:"apos";s:1:"'";s:5:"OElig";s:2:"Œ";s:5:"oelig";s:2:"œ";s:6:"Scaron";s:2:"Š";s:6:"scaron";s:2:"š";s:4:"Yuml";s:2:"Ÿ";s:4:"circ";s:2:"ˆ";s:5:"tilde";s:2:"˜";s:4:"ensp";s:3:" ";s:4:"emsp";s:3:" ";s:6:"thinsp";s:3:" ";s:4:"zwnj";s:3:"";s:3:"zwj";s:3:"";s:3:"lrm";s:3:"";s:3:"rlm";s:3:"";s:5:"ndash";s:3:"–";s:5:"mdash";s:3:"—";s:5:"lsquo";s:3:"‘";s:5:"rsquo";s:3:"’";s:5:"sbquo";s:3:"‚";s:5:"ldquo";s:3:"“";s:5:"rdquo";s:3:"”";s:5:"bdquo";s:3:"„";s:6:"dagger";s:3:"†";s:6:"Dagger";s:3:"‡";s:6:"permil";s:3:"‰";s:6:"lsaquo";s:3:"‹";s:6:"rsaquo";s:3:"›";s:4:"euro";s:3:"€";s:4:"nbsp";s:2:" ";s:5:"iexcl";s:2:"¡";s:4:"cent";s:2:"¢";s:5:"pound";s:2:"£";s:6:"curren";s:2:"¤";s:3:"yen";s:2:"¥";s:6:"brvbar";s:2:"¦";s:4:"sect";s:2:"§";s:3:"uml";s:2:"¨";s:4:"copy";s:2:"©";s:4:"ordf";s:2:"ª";s:5:"laquo";s:2:"«";s:3:"not";s:2:"¬";s:3:"shy";s:2:"";s:3:"reg";s:2:"®";s:4:"macr";s:2:"¯";s:3:"deg";s:2:"°";s:6:"plusmn";s:2:"±";s:4:"sup2";s:2:"²";s:4:"sup3";s:2:"³";s:5:"acute";s:2:"´";s:5:"micro";s:2:"µ";s:4:"para";s:2:"¶";s:6:"middot";s:2:"·";s:5:"cedil";s:2:"¸";s:4:"sup1";s:2:"¹";s:4:"ordm";s:2:"º";s:5:"raquo";s:2:"»";s:6:"frac14";s:2:"¼";s:6:"frac12";s:2:"½";s:6:"frac34";s:2:"¾";s:6:"iquest";s:2:"¿";s:6:"Agrave";s:2:"À";s:6:"Aacute";s:2:"Á";s:5:"Acirc";s:2:"Â";s:6:"Atilde";s:2:"Ã";s:4:"Auml";s:2:"Ä";s:5:"Aring";s:2:"Å";s:5:"AElig";s:2:"Æ";s:6:"Ccedil";s:2:"Ç";s:6:"Egrave";s:2:"È";s:6:"Eacute";s:2:"É";s:5:"Ecirc";s:2:"Ê";s:4:"Euml";s:2:"Ë";s:6:"Igrave";s:2:"Ì";s:6:"Iacute";s:2:"Í";s:5:"Icirc";s:2:"Î";s:4:"Iuml";s:2:"Ï";s:3:"ETH";s:2:"Ð";s:6:"Ntilde";s:2:"Ñ";s:6:"Ograve";s:2:"Ò";s:6:"Oacute";s:2:"Ó";s:5:"Ocirc";s:2:"Ô";s:6:"Otilde";s:2:"Õ";s:4:"Ouml";s:2:"Ö";s:5:"times";s:2:"×";s:6:"Oslash";s:2:"Ø";s:6:"Ugrave";s:2:"Ù";s:6:"Uacute";s:2:"Ú";s:5:"Ucirc";s:2:"Û";s:4:"Uuml";s:2:"Ü";s:6:"Yacute";s:2:"Ý";s:5:"THORN";s:2:"Þ";s:5:"szlig";s:2:"ß";s:6:"agrave";s:2:"à";s:6:"aacute";s:2:"á";s:5:"acirc";s:2:"â";s:6:"atilde";s:2:"ã";s:4:"auml";s:2:"ä";s:5:"aring";s:2:"å";s:5:"aelig";s:2:"æ";s:6:"ccedil";s:2:"ç";s:6:"egrave";s:2:"è";s:6:"eacute";s:2:"é";s:5:"ecirc";s:2:"ê";s:4:"euml";s:2:"ë";s:6:"igrave";s:2:"ì";s:6:"iacute";s:2:"í";s:5:"icirc";s:2:"î";s:4:"iuml";s:2:"ï";s:3:"eth";s:2:"ð";s:6:"ntilde";s:2:"ñ";s:6:"ograve";s:2:"ò";s:6:"oacute";s:2:"ó";s:5:"ocirc";s:2:"ô";s:6:"otilde";s:2:"õ";s:4:"ouml";s:2:"ö";s:6:"divide";s:2:"÷";s:6:"oslash";s:2:"ø";s:6:"ugrave";s:2:"ù";s:6:"uacute";s:2:"ú";s:5:"ucirc";s:2:"û";s:4:"uuml";s:2:"ü";s:6:"yacute";s:2:"ý";s:5:"thorn";s:2:"þ";s:4:"yuml";s:2:"ÿ";} htmlpurifier/library/HTMLPurifier/IDAccumulator.php 0000644 00000003157 14716425662 0016424 0 ustar 00 load($config->get('Attr.IDBlacklist'));
return $id_accumulator;
}
/**
* Add an ID to the lookup table.
* @param string $id ID to be added.
* @return bool status, true if success, false if there's a dupe
*/
public function add($id)
{
if (isset($this->ids[$id])) {
return false;
}
return $this->ids[$id] = true;
}
/**
* Load a list of IDs into the lookup table
* @param $array_of_ids Array of IDs to load
* @note This function doesn't care about duplicates
*/
public function load($array_of_ids)
{
foreach ($array_of_ids as $id) {
$this->ids[$id] = true;
}
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/ErrorStruct.php 0000644 00000003545 14716425662 0016227 0 ustar 00 children[$type][$id])) {
$this->children[$type][$id] = new HTMLPurifier_ErrorStruct();
$this->children[$type][$id]->type = $type;
}
return $this->children[$type][$id];
}
/**
* @param int $severity
* @param string $message
*/
public function addError($severity, $message)
{
$this->errors[] = array($severity, $message);
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/VarParser/Flexible.php 0000644 00000011674 14716425662 0017372 0 ustar 00 $j) {
$var[$i] = trim($j);
}
if ($type === self::HASH) {
// key:value,key2:value2
$nvar = array();
foreach ($var as $keypair) {
$c = explode(':', $keypair, 2);
if (!isset($c[1])) {
continue;
}
$nvar[trim($c[0])] = trim($c[1]);
}
$var = $nvar;
}
}
if (!is_array($var)) {
break;
}
$keys = array_keys($var);
if ($keys === array_keys($keys)) {
if ($type == self::ALIST) {
return $var;
} elseif ($type == self::LOOKUP) {
$new = array();
foreach ($var as $key) {
$new[$key] = true;
}
return $new;
} else {
break;
}
}
if ($type === self::ALIST) {
trigger_error("Array list did not have consecutive integer indexes", E_USER_WARNING);
return array_values($var);
}
if ($type === self::LOOKUP) {
foreach ($var as $key => $value) {
if ($value !== true) {
trigger_error(
"Lookup array has non-true value at key '$key'; " .
"maybe your input array was not indexed numerically",
E_USER_WARNING
);
}
$var[$key] = true;
}
}
return $var;
default:
$this->errorInconsistent(__CLASS__, $type);
}
$this->errorGeneric($var, $type);
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier/VarParser/error_log; 0000644 00000042520 14716425662 0017131 0 ustar 00 [29-Nov-2023 11:22:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Native.php on line 8
[29-Nov-2023 11:22:38 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Flexible.php on line 8
[29-Nov-2023 17:26:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Native.php on line 8
[29-Nov-2023 17:27:03 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Flexible.php on line 8
[30-Nov-2023 12:35:15 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Flexible.php on line 8
[30-Nov-2023 12:35:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Native.php on line 8
[02-Dec-2023 01:09:36 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Flexible.php on line 8
[02-Dec-2023 01:09:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Native.php on line 8
[04-Apr-2024 23:34:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Flexible.php on line 8
[05-Apr-2024 00:01:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Native.php on line 8
[20-Apr-2024 15:25:17 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Native.php on line 8
[20-Apr-2024 19:08:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Flexible.php on line 8
[03-May-2024 10:33:04 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Flexible.php on line 8
[03-May-2024 15:45:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Native.php on line 8
[05-May-2024 01:07:19 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Native.php on line 8
[05-May-2024 01:30:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Flexible.php on line 8
[05-May-2024 11:02:48 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Native.php on line 8
[05-May-2024 11:26:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Flexible.php on line 8
[05-May-2024 20:28:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Native.php on line 8
[05-May-2024 20:51:08 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Flexible.php on line 8
[13-May-2024 13:00:44 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Flexible.php on line 8
[13-May-2024 13:07:39 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Native.php on line 8
[14-May-2024 20:11:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Native.php on line 8
[14-May-2024 20:18:33 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Flexible.php on line 8
[09-Jun-2024 01:52:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Native.php on line 8
[09-Jun-2024 06:15:24 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Flexible.php on line 8
[14-Jun-2024 13:04:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Flexible.php on line 8
[14-Jun-2024 13:28:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Native.php on line 8
[15-Jun-2024 08:19:22 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Flexible.php on line 8
[18-Jun-2024 09:28:58 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Native.php on line 8
[18-Jun-2024 22:54:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Native.php on line 8
[18-Jun-2024 22:59:49 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Flexible.php on line 8
[19-Jun-2024 07:52:37 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Native.php on line 8
[19-Jun-2024 07:57:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Flexible.php on line 8
[19-Jun-2024 20:41:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Native.php on line 8
[19-Jun-2024 20:47:02 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Flexible.php on line 8
[30-Jun-2024 02:46:31 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Flexible.php on line 8
[02-Jul-2024 11:43:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Native.php on line 8
[06-Jul-2024 09:17:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Flexible.php on line 8
[15-Jul-2024 09:55:41 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Flexible.php on line 8
[16-Jul-2024 00:12:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Native.php on line 8
[19-Jul-2024 14:26:13 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Flexible.php on line 8
[22-Jul-2024 19:29:20 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Native.php on line 8
[22-Jul-2024 19:42:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Flexible.php on line 8
[23-Jul-2024 05:38:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Native.php on line 8
[25-Jul-2024 11:33:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Native.php on line 8
[29-Jul-2024 02:28:14 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Native.php on line 8
[16-Aug-2024 00:23:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Flexible.php on line 8
[25-Aug-2024 07:35:47 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Flexible.php on line 8
[25-Aug-2024 13:40:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Native.php on line 8
[25-Aug-2024 16:59:06 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Flexible.php on line 8
[26-Aug-2024 07:41:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Flexible.php on line 8
[31-Aug-2024 16:21:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Flexible.php on line 8
[01-Sep-2024 14:11:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Native.php on line 8
[01-Sep-2024 23:18:09 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Native.php on line 8
[01-Sep-2024 23:41:29 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Flexible.php on line 8
[04-Sep-2024 10:53:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Native.php on line 8
[05-Sep-2024 00:22:00 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Flexible.php on line 8
[05-Sep-2024 08:10:50 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Flexible.php on line 8
[11-Sep-2024 22:57:52 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Native.php on line 8
[11-Sep-2024 23:10:40 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Flexible.php on line 8
[13-Sep-2024 06:39:02 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Native.php on line 8
[13-Sep-2024 06:40:54 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Native.php on line 8
[13-Sep-2024 07:04:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Flexible.php on line 8
[13-Sep-2024 07:05:34 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Flexible.php on line 8
[14-Sep-2024 08:27:07 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Native.php on line 8
[15-Sep-2024 11:33:12 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Flexible.php on line 8
[18-Sep-2024 23:20:43 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Native.php on line 8
[21-Sep-2024 08:12:28 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Flexible.php on line 8
[27-Sep-2024 23:12:10 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Flexible.php on line 8
[03-Oct-2024 11:54:35 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Flexible.php on line 8
[04-Oct-2024 07:41:46 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Native.php on line 8
[04-Oct-2024 14:05:57 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Flexible.php on line 8
[09-Oct-2024 14:37:55 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Native.php on line 8
[18-Oct-2024 16:26:18 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Flexible.php on line 8
[18-Oct-2024 16:26:42 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Native.php on line 8
[26-Oct-2024 10:00:53 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Flexible.php on line 8
[31-Oct-2024 14:03:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Native.php on line 8
[31-Oct-2024 14:22:45 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Flexible.php on line 8
[10-Nov-2024 07:43:23 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Native.php on line 8
[10-Nov-2024 07:43:27 America/Fortaleza] PHP Fatal error: Class 'HTMLPurifier_VarParser' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParser/Flexible.php on line 8
htmlpurifier/library/HTMLPurifier/VarParser/Native.php 0000644 00000001616 14716425662 0017061 0 ustar 00 evalExpression($var);
}
/**
* @param string $expr
* @return mixed
* @throws HTMLPurifier_VarParserException
*/
protected function evalExpression($expr)
{
$var = null;
$result = eval("\$var = $expr;");
if ($result === false) {
throw new HTMLPurifier_VarParserException("Fatal error in evaluated code");
}
return $var;
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier.kses.php 0000644 00000001633 14716425662 0014671 0 ustar 00 $attributes) {
$allowed_elements[$element] = true;
foreach ($attributes as $attribute => $x) {
$allowed_attributes["$element.$attribute"] = true;
}
}
$config->set('HTML.AllowedElements', $allowed_elements);
$config->set('HTML.AllowedAttributes', $allowed_attributes);
if ($allowed_protocols !== null) {
$config->set('URI.AllowedSchemes', $allowed_protocols);
}
$purifier = new HTMLPurifier($config);
return $purifier->purify($string);
}
// vim: et sw=4 sts=4
htmlpurifier/library/error_log; 0000644 00000151740 14716425662 0012757 0 ustar 00 [12-Sep-2023 06:57:12 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[12-Sep-2023 06:57:12 America/Fortaleza] PHP Fatal error: Uncaught Error: Class 'HTMLPurifier_Bootstrap' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php:11
Stack trace:
#0 {main}
thrown in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 11
[17-Sep-2023 05:47:04 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[29-Sep-2023 12:37:17 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[29-Sep-2023 12:37:20 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[29-Sep-2023 12:37:32 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[29-Sep-2023 12:37:32 America/Fortaleza] PHP Fatal error: Uncaught Error: Class 'HTMLPurifier_Bootstrap' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php:11
Stack trace:
#0 {main}
thrown in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 11
[29-Sep-2023 15:47:41 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[29-Sep-2023 15:47:41 America/Fortaleza] PHP Fatal error: Uncaught Error: Class 'HTMLPurifier_Bootstrap' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php:11
Stack trace:
#0 {main}
thrown in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 11
[29-Sep-2023 15:47:42 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[29-Sep-2023 15:47:43 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[30-Sep-2023 17:44:06 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[30-Sep-2023 17:44:06 America/Fortaleza] PHP Fatal error: Uncaught Error: Class 'HTMLPurifier_Bootstrap' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php:11
Stack trace:
#0 {main}
thrown in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 11
[30-Sep-2023 17:44:10 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[30-Sep-2023 17:44:19 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[30-Sep-2023 19:32:31 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[30-Sep-2023 19:32:31 America/Fortaleza] PHP Fatal error: Uncaught Error: Class 'HTMLPurifier_Bootstrap' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php:11
Stack trace:
#0 {main}
thrown in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 11
[30-Sep-2023 19:32:39 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[30-Sep-2023 19:32:43 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[15-Nov-2023 17:39:47 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[21-Nov-2023 06:43:10 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[21-Nov-2023 06:43:18 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[21-Nov-2023 06:43:33 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[21-Nov-2023 06:43:33 America/Fortaleza] PHP Fatal error: Uncaught Error: Class 'HTMLPurifier_Bootstrap' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php:11
Stack trace:
#0 {main}
thrown in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 11
[21-Nov-2023 13:28:19 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[21-Nov-2023 13:28:19 America/Fortaleza] PHP Fatal error: Uncaught Error: Class 'HTMLPurifier_Bootstrap' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php:11
Stack trace:
#0 {main}
thrown in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 11
[21-Nov-2023 13:28:26 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[21-Nov-2023 13:28:33 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[22-Nov-2023 07:04:42 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[22-Nov-2023 07:04:48 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[22-Nov-2023 07:04:50 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[22-Nov-2023 07:04:50 America/Fortaleza] PHP Fatal error: Uncaught Error: Class 'HTMLPurifier_Bootstrap' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php:11
Stack trace:
#0 {main}
thrown in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 11
[22-Nov-2023 10:38:31 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[22-Nov-2023 10:38:31 America/Fortaleza] PHP Fatal error: Uncaught Error: Class 'HTMLPurifier_Bootstrap' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php:11
Stack trace:
#0 {main}
thrown in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 11
[23-Nov-2023 00:18:34 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[23-Nov-2023 00:18:44 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[23-Nov-2023 00:18:46 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[23-Nov-2023 00:18:46 America/Fortaleza] PHP Fatal error: Uncaught Error: Class 'HTMLPurifier_Bootstrap' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php:11
Stack trace:
#0 {main}
thrown in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 11
[27-Nov-2023 11:35:32 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[28-Nov-2023 12:38:41 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[31-Dec-2023 04:55:01 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[12-Jan-2024 02:53:01 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[15-Jan-2024 11:15:48 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[15-Jan-2024 11:15:48 America/Fortaleza] PHP Fatal error: Uncaught Error: Class 'HTMLPurifier_Bootstrap' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php:11
Stack trace:
#0 {main}
thrown in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 11
[16-Feb-2024 11:26:17 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[16-Feb-2024 23:42:58 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[16-Feb-2024 23:42:58 America/Fortaleza] PHP Fatal error: Uncaught Error: Class 'HTMLPurifier_Bootstrap' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php:11
Stack trace:
#0 {main}
thrown in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 11
[17-Feb-2024 20:49:10 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[17-Feb-2024 22:56:47 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[02-Mar-2024 09:59:33 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[03-Mar-2024 12:26:45 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[03-Mar-2024 12:26:45 America/Fortaleza] PHP Fatal error: Uncaught Error: Class 'HTMLPurifier_Bootstrap' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php:11
Stack trace:
#0 {main}
thrown in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 11
[07-Mar-2024 01:17:38 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[09-Mar-2024 02:48:56 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[09-Mar-2024 02:48:56 America/Fortaleza] PHP Fatal error: Uncaught Error: Class 'HTMLPurifier_Bootstrap' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php:11
Stack trace:
#0 {main}
thrown in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 11
[11-Mar-2024 00:57:35 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[15-Mar-2024 12:44:42 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[15-Mar-2024 12:44:42 America/Fortaleza] PHP Fatal error: Uncaught Error: Class 'HTMLPurifier_Bootstrap' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php:11
Stack trace:
#0 {main}
thrown in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 11
[21-Apr-2024 22:45:39 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[21-Apr-2024 22:45:39 America/Fortaleza] PHP Fatal error: Uncaught Error: Class 'HTMLPurifier_Bootstrap' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php:11
Stack trace:
#0 {main}
thrown in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 11
[22-Apr-2024 00:58:21 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[22-Apr-2024 20:18:13 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[23-Apr-2024 00:24:43 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[02-May-2024 09:49:21 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[02-May-2024 09:49:21 America/Fortaleza] PHP Fatal error: Uncaught Error: Class 'HTMLPurifier_Bootstrap' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php:11
Stack trace:
#0 {main}
thrown in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 11
[02-May-2024 09:55:26 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[02-May-2024 10:00:01 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[03-May-2024 00:11:44 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[04-May-2024 22:12:12 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[04-May-2024 22:12:20 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[04-May-2024 22:12:32 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[04-May-2024 22:12:32 America/Fortaleza] PHP Fatal error: Uncaught Error: Class 'HTMLPurifier_Bootstrap' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php:11
Stack trace:
#0 {main}
thrown in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 11
[05-May-2024 08:08:32 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[05-May-2024 08:08:39 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[05-May-2024 08:08:52 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[05-May-2024 08:08:52 America/Fortaleza] PHP Fatal error: Uncaught Error: Class 'HTMLPurifier_Bootstrap' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php:11
Stack trace:
#0 {main}
thrown in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 11
[05-May-2024 18:19:52 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[05-May-2024 18:20:00 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[05-May-2024 18:20:12 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[05-May-2024 18:20:12 America/Fortaleza] PHP Fatal error: Uncaught Error: Class 'HTMLPurifier_Bootstrap' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php:11
Stack trace:
#0 {main}
thrown in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 11
[08-May-2024 22:30:43 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[08-May-2024 22:30:43 America/Fortaleza] PHP Fatal error: Uncaught Error: Class 'HTMLPurifier_Bootstrap' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php:11
Stack trace:
#0 {main}
thrown in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 11
[13-May-2024 09:40:03 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[13-May-2024 12:24:20 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[13-May-2024 12:25:29 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[13-May-2024 12:25:29 America/Fortaleza] PHP Fatal error: Uncaught Error: Class 'HTMLPurifier_Bootstrap' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php:11
Stack trace:
#0 {main}
thrown in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 11
[14-May-2024 18:37:49 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[14-May-2024 18:37:56 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[14-May-2024 18:38:08 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[14-May-2024 18:38:08 America/Fortaleza] PHP Fatal error: Uncaught Error: Class 'HTMLPurifier_Bootstrap' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php:11
Stack trace:
#0 {main}
thrown in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 11
[18-May-2024 20:09:41 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[18-May-2024 20:51:11 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[19-May-2024 01:35:18 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[19-May-2024 01:35:18 America/Fortaleza] PHP Fatal error: Uncaught Error: Class 'HTMLPurifier_Bootstrap' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php:11
Stack trace:
#0 {main}
thrown in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 11
[28-May-2024 18:20:46 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[29-May-2024 18:36:37 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[29-May-2024 18:36:37 America/Fortaleza] PHP Fatal error: Uncaught Error: Class 'HTMLPurifier_Bootstrap' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php:11
Stack trace:
#0 {main}
thrown in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 11
[29-May-2024 23:21:22 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[30-May-2024 03:09:38 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[03-Jun-2024 13:12:54 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[14-Jun-2024 09:35:10 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[14-Jun-2024 09:35:10 America/Fortaleza] PHP Fatal error: Uncaught Error: Class 'HTMLPurifier_Bootstrap' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php:11
Stack trace:
#0 {main}
thrown in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 11
[14-Jun-2024 09:57:10 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[14-Jun-2024 10:23:07 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[18-Jun-2024 03:40:22 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[18-Jun-2024 03:40:22 America/Fortaleza] PHP Fatal error: Uncaught Error: Class 'HTMLPurifier_Bootstrap' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php:11
Stack trace:
#0 {main}
thrown in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 11
[18-Jun-2024 22:46:13 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[18-Jun-2024 22:46:21 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[18-Jun-2024 22:46:33 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[18-Jun-2024 22:46:33 America/Fortaleza] PHP Fatal error: Uncaught Error: Class 'HTMLPurifier_Bootstrap' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php:11
Stack trace:
#0 {main}
thrown in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 11
[19-Jun-2024 07:44:09 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[19-Jun-2024 07:44:17 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[19-Jun-2024 07:44:30 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[19-Jun-2024 07:44:30 America/Fortaleza] PHP Fatal error: Uncaught Error: Class 'HTMLPurifier_Bootstrap' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php:11
Stack trace:
#0 {main}
thrown in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 11
[19-Jun-2024 20:33:29 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[19-Jun-2024 20:33:37 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[19-Jun-2024 20:33:49 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[19-Jun-2024 20:33:49 America/Fortaleza] PHP Fatal error: Uncaught Error: Class 'HTMLPurifier_Bootstrap' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php:11
Stack trace:
#0 {main}
thrown in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 11
[29-Jun-2024 19:54:11 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[02-Jul-2024 09:41:19 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[02-Jul-2024 09:41:19 America/Fortaleza] PHP Fatal error: Uncaught Error: Class 'HTMLPurifier_Bootstrap' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php:11
Stack trace:
#0 {main}
thrown in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 11
[02-Jul-2024 13:40:22 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[03-Jul-2024 08:41:07 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[03-Jul-2024 18:14:31 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[05-Jul-2024 16:22:51 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[09-Jul-2024 12:06:10 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[12-Jul-2024 07:05:52 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[14-Jul-2024 06:47:36 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[14-Jul-2024 06:47:36 America/Fortaleza] PHP Fatal error: Uncaught Error: Class 'HTMLPurifier_Bootstrap' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php:11
Stack trace:
#0 {main}
thrown in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 11
[14-Jul-2024 20:11:10 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[17-Jul-2024 02:21:13 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[17-Jul-2024 02:21:13 America/Fortaleza] PHP Fatal error: Uncaught Error: Class 'HTMLPurifier_Bootstrap' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php:11
Stack trace:
#0 {main}
thrown in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 11
[18-Jul-2024 23:46:47 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[18-Jul-2024 23:46:47 America/Fortaleza] PHP Fatal error: Uncaught Error: Class 'HTMLPurifier_Bootstrap' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php:11
Stack trace:
#0 {main}
thrown in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 11
[22-Jul-2024 16:44:24 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[22-Jul-2024 16:44:32 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[22-Jul-2024 16:44:44 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[22-Jul-2024 16:44:44 America/Fortaleza] PHP Fatal error: Uncaught Error: Class 'HTMLPurifier_Bootstrap' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php:11
Stack trace:
#0 {main}
thrown in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 11
[23-Jul-2024 07:32:57 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[23-Jul-2024 07:32:57 America/Fortaleza] PHP Fatal error: Uncaught Error: Class 'HTMLPurifier_Bootstrap' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php:11
Stack trace:
#0 {main}
thrown in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 11
[25-Jul-2024 19:53:03 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[31-Jul-2024 17:47:10 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[06-Aug-2024 09:26:01 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[06-Aug-2024 09:26:01 America/Fortaleza] PHP Fatal error: Uncaught Error: Class 'HTMLPurifier_Bootstrap' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php:11
Stack trace:
#0 {main}
thrown in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 11
[07-Aug-2024 02:14:28 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[08-Aug-2024 13:45:52 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[08-Aug-2024 13:45:52 America/Fortaleza] PHP Fatal error: Uncaught Error: Class 'HTMLPurifier_Bootstrap' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php:11
Stack trace:
#0 {main}
thrown in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 11
[08-Aug-2024 20:27:04 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[08-Aug-2024 21:50:34 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[09-Aug-2024 16:45:34 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[12-Aug-2024 20:24:13 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[26-Aug-2024 01:13:39 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[26-Aug-2024 21:29:59 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[26-Aug-2024 21:29:59 America/Fortaleza] PHP Fatal error: Uncaught Error: Class 'HTMLPurifier_Bootstrap' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php:11
Stack trace:
#0 {main}
thrown in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 11
[28-Aug-2024 00:49:57 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[31-Aug-2024 23:17:47 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[01-Sep-2024 19:19:32 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[01-Sep-2024 19:19:32 America/Fortaleza] PHP Fatal error: Uncaught Error: Class 'HTMLPurifier_Bootstrap' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php:11
Stack trace:
#0 {main}
thrown in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 11
[01-Sep-2024 20:23:01 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[01-Sep-2024 20:23:09 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[01-Sep-2024 20:23:21 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[01-Sep-2024 20:23:21 America/Fortaleza] PHP Fatal error: Uncaught Error: Class 'HTMLPurifier_Bootstrap' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php:11
Stack trace:
#0 {main}
thrown in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 11
[07-Sep-2024 05:28:16 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[07-Sep-2024 06:24:37 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[07-Sep-2024 06:24:45 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[07-Sep-2024 06:24:57 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[07-Sep-2024 06:24:57 America/Fortaleza] PHP Fatal error: Uncaught Error: Class 'HTMLPurifier_Bootstrap' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php:11
Stack trace:
#0 {main}
thrown in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 11
[07-Sep-2024 06:29:49 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[07-Sep-2024 06:29:58 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[07-Sep-2024 06:30:09 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[07-Sep-2024 06:30:09 America/Fortaleza] PHP Fatal error: Uncaught Error: Class 'HTMLPurifier_Bootstrap' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php:11
Stack trace:
#0 {main}
thrown in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 11
[07-Sep-2024 21:31:58 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[07-Sep-2024 21:31:58 America/Fortaleza] PHP Fatal error: Uncaught Error: Class 'HTMLPurifier_Bootstrap' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php:11
Stack trace:
#0 {main}
thrown in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 11
[11-Sep-2024 20:14:44 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[11-Sep-2024 20:14:52 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[11-Sep-2024 20:15:04 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[11-Sep-2024 20:15:04 America/Fortaleza] PHP Fatal error: Uncaught Error: Class 'HTMLPurifier_Bootstrap' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php:11
Stack trace:
#0 {main}
thrown in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 11
[15-Sep-2024 08:50:54 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[15-Sep-2024 08:50:54 America/Fortaleza] PHP Fatal error: Uncaught Error: Class 'HTMLPurifier_Bootstrap' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php:11
Stack trace:
#0 {main}
thrown in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 11
[15-Sep-2024 10:46:48 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[15-Sep-2024 17:59:24 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[19-Sep-2024 12:57:04 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[19-Sep-2024 19:54:40 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[19-Sep-2024 19:54:40 America/Fortaleza] PHP Fatal error: Uncaught Error: Class 'HTMLPurifier_Bootstrap' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php:11
Stack trace:
#0 {main}
thrown in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 11
[19-Sep-2024 21:30:13 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[18-Oct-2024 04:52:47 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[18-Oct-2024 06:16:16 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[18-Oct-2024 06:16:16 America/Fortaleza] PHP Fatal error: Uncaught Error: Class 'HTMLPurifier_Bootstrap' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php:11
Stack trace:
#0 {main}
thrown in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 11
[18-Oct-2024 12:27:21 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[18-Oct-2024 12:27:21 America/Fortaleza] PHP Fatal error: Uncaught Error: Class 'HTMLPurifier_Bootstrap' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php:11
Stack trace:
#0 {main}
thrown in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 11
[18-Oct-2024 12:37:27 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[23-Oct-2024 05:47:13 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[23-Oct-2024 22:17:37 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[24-Oct-2024 01:05:35 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[24-Oct-2024 01:05:35 America/Fortaleza] PHP Fatal error: Uncaught Error: Class 'HTMLPurifier_Bootstrap' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php:11
Stack trace:
#0 {main}
thrown in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 11
[29-Oct-2024 20:46:16 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[31-Oct-2024 11:34:54 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[31-Oct-2024 11:35:01 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[31-Oct-2024 11:35:14 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[31-Oct-2024 11:35:14 America/Fortaleza] PHP Fatal error: Uncaught Error: Class 'HTMLPurifier_Bootstrap' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php:11
Stack trace:
#0 {main}
thrown in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 11
[09-Nov-2024 01:18:51 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[09-Nov-2024 01:18:59 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[09-Nov-2024 01:47:03 America/Fortaleza] PHP Deprecated: __autoload() is deprecated, use spl_autoload_register() instead in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 17
[09-Nov-2024 01:47:03 America/Fortaleza] PHP Fatal error: Uncaught Error: Class 'HTMLPurifier_Bootstrap' not found in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php:11
Stack trace:
#0 {main}
thrown in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/library/HTMLPurifier.autoload.php on line 11
htmlpurifier/library/HTMLPurifier.func.php 0000644 00000001100 14716425662 0014644 0 ustar 00 purify($html, $config);
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier.php 0000644 00000023461 14716425662 0013730 0 ustar 00 config = HTMLPurifier_Config::create($config);
$this->strategy = new HTMLPurifier_Strategy_Core();
}
/**
* Adds a filter to process the output. First come first serve
*
* @param HTMLPurifier_Filter $filter HTMLPurifier_Filter object
*/
public function addFilter($filter)
{
trigger_error(
'HTMLPurifier->addFilter() is deprecated, use configuration directives' .
' in the Filter namespace or Filter.Custom',
E_USER_WARNING
);
$this->filters[] = $filter;
}
/**
* Filters an HTML snippet/document to be XSS-free and standards-compliant.
*
* @param string $html String of HTML to purify
* @param HTMLPurifier_Config $config Config object for this operation,
* if omitted, defaults to the config object specified during this
* object's construction. The parameter can also be any type
* that HTMLPurifier_Config::create() supports.
*
* @return string Purified HTML
*/
public function purify($html, $config = null)
{
// :TODO: make the config merge in, instead of replace
$config = $config ? HTMLPurifier_Config::create($config) : $this->config;
// implementation is partially environment dependant, partially
// configuration dependant
$lexer = HTMLPurifier_Lexer::create($config);
$context = new HTMLPurifier_Context();
// setup HTML generator
$this->generator = new HTMLPurifier_Generator($config, $context);
$context->register('Generator', $this->generator);
// set up global context variables
if ($config->get('Core.CollectErrors')) {
// may get moved out if other facilities use it
$language_factory = HTMLPurifier_LanguageFactory::instance();
$language = $language_factory->create($config, $context);
$context->register('Locale', $language);
$error_collector = new HTMLPurifier_ErrorCollector($context);
$context->register('ErrorCollector', $error_collector);
}
// setup id_accumulator context, necessary due to the fact that
// AttrValidator can be called from many places
$id_accumulator = HTMLPurifier_IDAccumulator::build($config, $context);
$context->register('IDAccumulator', $id_accumulator);
$html = HTMLPurifier_Encoder::convertToUTF8($html, $config, $context);
// setup filters
$filter_flags = $config->getBatch('Filter');
$custom_filters = $filter_flags['Custom'];
unset($filter_flags['Custom']);
$filters = array();
foreach ($filter_flags as $filter => $flag) {
if (!$flag) {
continue;
}
if (strpos($filter, '.') !== false) {
continue;
}
$class = "HTMLPurifier_Filter_$filter";
$filters[] = new $class;
}
foreach ($custom_filters as $filter) {
// maybe "HTMLPurifier_Filter_$filter", but be consistent with AutoFormat
$filters[] = $filter;
}
$filters = array_merge($filters, $this->filters);
// maybe prepare(), but later
for ($i = 0, $filter_size = count($filters); $i < $filter_size; $i++) {
$html = $filters[$i]->preFilter($html, $config, $context);
}
// purified HTML
$html =
$this->generator->generateFromTokens(
// list of tokens
$this->strategy->execute(
// list of un-purified tokens
$lexer->tokenizeHTML(
// un-purified HTML
$html,
$config,
$context
),
$config,
$context
)
);
for ($i = $filter_size - 1; $i >= 0; $i--) {
$html = $filters[$i]->postFilter($html, $config, $context);
}
$html = HTMLPurifier_Encoder::convertFromUTF8($html, $config, $context);
$this->context =& $context;
return $html;
}
/**
* Filters an array of HTML snippets
*
* @param string[] $array_of_html Array of html snippets
* @param HTMLPurifier_Config $config Optional config object for this operation.
* See HTMLPurifier::purify() for more details.
*
* @return string[] Array of purified HTML
*/
public function purifyArray($array_of_html, $config = null)
{
$context_array = array();
foreach ($array_of_html as $key => $html) {
$array_of_html[$key] = $this->purify($html, $config);
$context_array[$key] = $this->context;
}
$this->context = $context_array;
return $array_of_html;
}
/**
* Singleton for enforcing just one HTML Purifier in your system
*
* @param HTMLPurifier|HTMLPurifier_Config $prototype Optional prototype
* HTMLPurifier instance to overload singleton with,
* or HTMLPurifier_Config instance to configure the
* generated version with.
*
* @return HTMLPurifier
*/
public static function instance($prototype = null)
{
if (!self::$instance || $prototype) {
if ($prototype instanceof HTMLPurifier) {
self::$instance = $prototype;
} elseif ($prototype) {
self::$instance = new HTMLPurifier($prototype);
} else {
self::$instance = new HTMLPurifier();
}
}
return self::$instance;
}
/**
* Singleton for enforcing just one HTML Purifier in your system
*
* @param HTMLPurifier|HTMLPurifier_Config $prototype Optional prototype
* HTMLPurifier instance to overload singleton with,
* or HTMLPurifier_Config instance to configure the
* generated version with.
*
* @return HTMLPurifier
* @note Backwards compatibility, see instance()
*/
public static function getInstance($prototype = null)
{
return HTMLPurifier::instance($prototype);
}
}
// vim: et sw=4 sts=4
htmlpurifier/library/HTMLPurifier.path.php 0000644 00000000353 14716425662 0014656 0 ustar 00
Copyright (C)
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
Also add information on how to contact you by electronic and paper mail.
You should also get your employer (if you work as a programmer) or your
school, if any, to sign a "copyright disclaimer" for the library, if
necessary. Here is a sample; alter the names:
Yoyodyne, Inc., hereby disclaims all copyright interest in the
library `Frob' (a library for tweaking knobs) written by James Random Hacker.
, 1 April 1990
Ty Coon, President of Vice
That's all there is to it!
vim: et sw=4 sts=4
htmlpurifier/WHATSNEW 0000644 00000001336 14716425662 0010461 0 ustar 00 HTML Purifier 4.9.x is a maintenance release, collecting a year
of accumulated bug fixes plus a few new features. New features
include support for min/max-width/height CSS, and rgba/hsl/hsla
in color specifications. Major bugfixes include improvements
in the Serializer cache to avoid chmod'ing directories, better
entity decoding (we won't accidentally encode entities that occur
in URLs) and rel="noopener" on links with target attributes,
to prevent them from overwriting the original frame.
4.9.3 works around an infinite loop bug in PHP 7.1 with the opcode
cache (and has one other, minor bugfix, avoiding using autoloading
when testing for DOMDocument presence). If these bugs do not
affect you, you do not need to upgrade.
htmlpurifier/plugins/phorum/Changelog 0000644 00000001653 14716425662 0014105 0 ustar 00 Changelog HTMLPurifier : Phorum Mod
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
= KEY ====================
# Breaks back-compat
! Feature
- Bugfix
+ Sub-comment
. Internal change
==========================
Version 4.0.0 for Phorum 5.2, released July 9, 2009
# Works only with HTML Purifier 4.0.0
! Better installation documentation
- Fixed double encoded quotes
- Fixed fatal error when migrate.php is blank
Version 3.0.0 for Phorum 5.2, released January 12, 2008
# WYSIWYG and suppress_message options are now configurable via web
interface.
- Module now compatible with Phorum 5.2, primary bugs were in migration
code as well as signature and edit message handling. This module is NOT
compatible with Phorum 5.1.
- Buggy WYSIWYG mode refined
. AutoFormatParam added to list of default configuration namespaces
vim: et sw=4 sts=4
htmlpurifier/plugins/phorum/htmlpurifier/LICENSE 0000644 00000063530 14716425662 0016014 0 ustar 00 GNU LESSER GENERAL PUBLIC LICENSE
Version 2.1, February 1999
Copyright (C) 1991, 1999 Free Software Foundation, Inc.
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
[This is the first released version of the Lesser GPL. It also counts
as the successor of the GNU Library Public License, version 2, hence
the version number 2.1.]
Preamble
The licenses for most software are designed to take away your
freedom to share and change it. By contrast, the GNU General Public
Licenses are intended to guarantee your freedom to share and change
free software--to make sure the software is free for all its users.
This license, the Lesser General Public License, applies to some
specially designated software packages--typically libraries--of the
Free Software Foundation and other authors who decide to use it. You
can use it too, but we suggest you first think carefully about whether
this license or the ordinary General Public License is the better
strategy to use in any particular case, based on the explanations below.
When we speak of free software, we are referring to freedom of use,
not price. Our General Public Licenses are designed to make sure that
you have the freedom to distribute copies of free software (and charge
for this service if you wish); that you receive source code or can get
it if you want it; that you can change the software and use pieces of
it in new free programs; and that you are informed that you can do
these things.
To protect your rights, we need to make restrictions that forbid
distributors to deny you these rights or to ask you to surrender these
rights. These restrictions translate to certain responsibilities for
you if you distribute copies of the library or if you modify it.
For example, if you distribute copies of the library, whether gratis
or for a fee, you must give the recipients all the rights that we gave
you. You must make sure that they, too, receive or can get the source
code. If you link other code with the library, you must provide
complete object files to the recipients, so that they can relink them
with the library after making changes to the library and recompiling
it. And you must show them these terms so they know their rights.
We protect your rights with a two-step method: (1) we copyright the
library, and (2) we offer you this license, which gives you legal
permission to copy, distribute and/or modify the library.
To protect each distributor, we want to make it very clear that
there is no warranty for the free library. Also, if the library is
modified by someone else and passed on, the recipients should know
that what they have is not the original version, so that the original
author's reputation will not be affected by problems that might be
introduced by others.
Finally, software patents pose a constant threat to the existence of
any free program. We wish to make sure that a company cannot
effectively restrict the users of a free program by obtaining a
restrictive license from a patent holder. Therefore, we insist that
any patent license obtained for a version of the library must be
consistent with the full freedom of use specified in this license.
Most GNU software, including some libraries, is covered by the
ordinary GNU General Public License. This license, the GNU Lesser
General Public License, applies to certain designated libraries, and
is quite different from the ordinary General Public License. We use
this license for certain libraries in order to permit linking those
libraries into non-free programs.
When a program is linked with a library, whether statically or using
a shared library, the combination of the two is legally speaking a
combined work, a derivative of the original library. The ordinary
General Public License therefore permits such linking only if the
entire combination fits its criteria of freedom. The Lesser General
Public License permits more lax criteria for linking other code with
the library.
We call this license the "Lesser" General Public License because it
does Less to protect the user's freedom than the ordinary General
Public License. It also provides other free software developers Less
of an advantage over competing non-free programs. These disadvantages
are the reason we use the ordinary General Public License for many
libraries. However, the Lesser license provides advantages in certain
special circumstances.
For example, on rare occasions, there may be a special need to
encourage the widest possible use of a certain library, so that it becomes
a de-facto standard. To achieve this, non-free programs must be
allowed to use the library. A more frequent case is that a free
library does the same job as widely used non-free libraries. In this
case, there is little to gain by limiting the free library to free
software only, so we use the Lesser General Public License.
In other cases, permission to use a particular library in non-free
programs enables a greater number of people to use a large body of
free software. For example, permission to use the GNU C Library in
non-free programs enables many more people to use the whole GNU
operating system, as well as its variant, the GNU/Linux operating
system.
Although the Lesser General Public License is Less protective of the
users' freedom, it does ensure that the user of a program that is
linked with the Library has the freedom and the wherewithal to run
that program using a modified version of the Library.
The precise terms and conditions for copying, distribution and
modification follow. Pay close attention to the difference between a
"work based on the library" and a "work that uses the library". The
former contains code derived from the library, whereas the latter must
be combined with the library in order to run.
GNU LESSER GENERAL PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. This License Agreement applies to any software library or other
program which contains a notice placed by the copyright holder or
other authorized party saying it may be distributed under the terms of
this Lesser General Public License (also called "this License").
Each licensee is addressed as "you".
A "library" means a collection of software functions and/or data
prepared so as to be conveniently linked with application programs
(which use some of those functions and data) to form executables.
The "Library", below, refers to any such software library or work
which has been distributed under these terms. A "work based on the
Library" means either the Library or any derivative work under
copyright law: that is to say, a work containing the Library or a
portion of it, either verbatim or with modifications and/or translated
straightforwardly into another language. (Hereinafter, translation is
included without limitation in the term "modification".)
"Source code" for a work means the preferred form of the work for
making modifications to it. For a library, complete source code means
all the source code for all modules it contains, plus any associated
interface definition files, plus the scripts used to control compilation
and installation of the library.
Activities other than copying, distribution and modification are not
covered by this License; they are outside its scope. The act of
running a program using the Library is not restricted, and output from
such a program is covered only if its contents constitute a work based
on the Library (independent of the use of the Library in a tool for
writing it). Whether that is true depends on what the Library does
and what the program that uses the Library does.
1. You may copy and distribute verbatim copies of the Library's
complete source code as you receive it, in any medium, provided that
you conspicuously and appropriately publish on each copy an
appropriate copyright notice and disclaimer of warranty; keep intact
all the notices that refer to this License and to the absence of any
warranty; and distribute a copy of this License along with the
Library.
You may charge a fee for the physical act of transferring a copy,
and you may at your option offer warranty protection in exchange for a
fee.
2. You may modify your copy or copies of the Library or any portion
of it, thus forming a work based on the Library, and copy and
distribute such modifications or work under the terms of Section 1
above, provided that you also meet all of these conditions:
a) The modified work must itself be a software library.
b) You must cause the files modified to carry prominent notices
stating that you changed the files and the date of any change.
c) You must cause the whole of the work to be licensed at no
charge to all third parties under the terms of this License.
d) If a facility in the modified Library refers to a function or a
table of data to be supplied by an application program that uses
the facility, other than as an argument passed when the facility
is invoked, then you must make a good faith effort to ensure that,
in the event an application does not supply such function or
table, the facility still operates, and performs whatever part of
its purpose remains meaningful.
(For example, a function in a library to compute square roots has
a purpose that is entirely well-defined independent of the
application. Therefore, Subsection 2d requires that any
application-supplied function or table used by this function must
be optional: if the application does not supply it, the square
root function must still compute square roots.)
These requirements apply to the modified work as a whole. If
identifiable sections of that work are not derived from the Library,
and can be reasonably considered independent and separate works in
themselves, then this License, and its terms, do not apply to those
sections when you distribute them as separate works. But when you
distribute the same sections as part of a whole which is a work based
on the Library, the distribution of the whole must be on the terms of
this License, whose permissions for other licensees extend to the
entire whole, and thus to each and every part regardless of who wrote
it.
Thus, it is not the intent of this section to claim rights or contest
your rights to work written entirely by you; rather, the intent is to
exercise the right to control the distribution of derivative or
collective works based on the Library.
In addition, mere aggregation of another work not based on the Library
with the Library (or with a work based on the Library) on a volume of
a storage or distribution medium does not bring the other work under
the scope of this License.
3. You may opt to apply the terms of the ordinary GNU General Public
License instead of this License to a given copy of the Library. To do
this, you must alter all the notices that refer to this License, so
that they refer to the ordinary GNU General Public License, version 2,
instead of to this License. (If a newer version than version 2 of the
ordinary GNU General Public License has appeared, then you can specify
that version instead if you wish.) Do not make any other change in
these notices.
Once this change is made in a given copy, it is irreversible for
that copy, so the ordinary GNU General Public License applies to all
subsequent copies and derivative works made from that copy.
This option is useful when you wish to copy part of the code of
the Library into a program that is not a library.
4. You may copy and distribute the Library (or a portion or
derivative of it, under Section 2) in object code or executable form
under the terms of Sections 1 and 2 above provided that you accompany
it with the complete corresponding machine-readable source code, which
must be distributed under the terms of Sections 1 and 2 above on a
medium customarily used for software interchange.
If distribution of object code is made by offering access to copy
from a designated place, then offering equivalent access to copy the
source code from the same place satisfies the requirement to
distribute the source code, even though third parties are not
compelled to copy the source along with the object code.
5. A program that contains no derivative of any portion of the
Library, but is designed to work with the Library by being compiled or
linked with it, is called a "work that uses the Library". Such a
work, in isolation, is not a derivative work of the Library, and
therefore falls outside the scope of this License.
However, linking a "work that uses the Library" with the Library
creates an executable that is a derivative of the Library (because it
contains portions of the Library), rather than a "work that uses the
library". The executable is therefore covered by this License.
Section 6 states terms for distribution of such executables.
When a "work that uses the Library" uses material from a header file
that is part of the Library, the object code for the work may be a
derivative work of the Library even though the source code is not.
Whether this is true is especially significant if the work can be
linked without the Library, or if the work is itself a library. The
threshold for this to be true is not precisely defined by law.
If such an object file uses only numerical parameters, data
structure layouts and accessors, and small macros and small inline
functions (ten lines or less in length), then the use of the object
file is unrestricted, regardless of whether it is legally a derivative
work. (Executables containing this object code plus portions of the
Library will still fall under Section 6.)
Otherwise, if the work is a derivative of the Library, you may
distribute the object code for the work under the terms of Section 6.
Any executables containing that work also fall under Section 6,
whether or not they are linked directly with the Library itself.
6. As an exception to the Sections above, you may also combine or
link a "work that uses the Library" with the Library to produce a
work containing portions of the Library, and distribute that work
under terms of your choice, provided that the terms permit
modification of the work for the customer's own use and reverse
engineering for debugging such modifications.
You must give prominent notice with each copy of the work that the
Library is used in it and that the Library and its use are covered by
this License. You must supply a copy of this License. If the work
during execution displays copyright notices, you must include the
copyright notice for the Library among them, as well as a reference
directing the user to the copy of this License. Also, you must do one
of these things:
a) Accompany the work with the complete corresponding
machine-readable source code for the Library including whatever
changes were used in the work (which must be distributed under
Sections 1 and 2 above); and, if the work is an executable linked
with the Library, with the complete machine-readable "work that
uses the Library", as object code and/or source code, so that the
user can modify the Library and then relink to produce a modified
executable containing the modified Library. (It is understood
that the user who changes the contents of definitions files in the
Library will not necessarily be able to recompile the application
to use the modified definitions.)
b) Use a suitable shared library mechanism for linking with the
Library. A suitable mechanism is one that (1) uses at run time a
copy of the library already present on the user's computer system,
rather than copying library functions into the executable, and (2)
will operate properly with a modified version of the library, if
the user installs one, as long as the modified version is
interface-compatible with the version that the work was made with.
c) Accompany the work with a written offer, valid for at
least three years, to give the same user the materials
specified in Subsection 6a, above, for a charge no more
than the cost of performing this distribution.
d) If distribution of the work is made by offering access to copy
from a designated place, offer equivalent access to copy the above
specified materials from the same place.
e) Verify that the user has already received a copy of these
materials or that you have already sent this user a copy.
For an executable, the required form of the "work that uses the
Library" must include any data and utility programs needed for
reproducing the executable from it. However, as a special exception,
the materials to be distributed need not include anything that is
normally distributed (in either source or binary form) with the major
components (compiler, kernel, and so on) of the operating system on
which the executable runs, unless that component itself accompanies
the executable.
It may happen that this requirement contradicts the license
restrictions of other proprietary libraries that do not normally
accompany the operating system. Such a contradiction means you cannot
use both them and the Library together in an executable that you
distribute.
7. You may place library facilities that are a work based on the
Library side-by-side in a single library together with other library
facilities not covered by this License, and distribute such a combined
library, provided that the separate distribution of the work based on
the Library and of the other library facilities is otherwise
permitted, and provided that you do these two things:
a) Accompany the combined library with a copy of the same work
based on the Library, uncombined with any other library
facilities. This must be distributed under the terms of the
Sections above.
b) Give prominent notice with the combined library of the fact
that part of it is a work based on the Library, and explaining
where to find the accompanying uncombined form of the same work.
8. You may not copy, modify, sublicense, link with, or distribute
the Library except as expressly provided under this License. Any
attempt otherwise to copy, modify, sublicense, link with, or
distribute the Library is void, and will automatically terminate your
rights under this License. However, parties who have received copies,
or rights, from you under this License will not have their licenses
terminated so long as such parties remain in full compliance.
9. You are not required to accept this License, since you have not
signed it. However, nothing else grants you permission to modify or
distribute the Library or its derivative works. These actions are
prohibited by law if you do not accept this License. Therefore, by
modifying or distributing the Library (or any work based on the
Library), you indicate your acceptance of this License to do so, and
all its terms and conditions for copying, distributing or modifying
the Library or works based on it.
10. Each time you redistribute the Library (or any work based on the
Library), the recipient automatically receives a license from the
original licensor to copy, distribute, link with or modify the Library
subject to these terms and conditions. You may not impose any further
restrictions on the recipients' exercise of the rights granted herein.
You are not responsible for enforcing compliance by third parties with
this License.
11. If, as a consequence of a court judgment or allegation of patent
infringement or for any other reason (not limited to patent issues),
conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot
distribute so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you
may not distribute the Library at all. For example, if a patent
license would not permit royalty-free redistribution of the Library by
all those who receive copies directly or indirectly through you, then
the only way you could satisfy both it and this License would be to
refrain entirely from distribution of the Library.
If any portion of this section is held invalid or unenforceable under any
particular circumstance, the balance of the section is intended to apply,
and the section as a whole is intended to apply in other circumstances.
It is not the purpose of this section to induce you to infringe any
patents or other property right claims or to contest validity of any
such claims; this section has the sole purpose of protecting the
integrity of the free software distribution system which is
implemented by public license practices. Many people have made
generous contributions to the wide range of software distributed
through that system in reliance on consistent application of that
system; it is up to the author/donor to decide if he or she is willing
to distribute software through any other system and a licensee cannot
impose that choice.
This section is intended to make thoroughly clear what is believed to
be a consequence of the rest of this License.
12. If the distribution and/or use of the Library is restricted in
certain countries either by patents or by copyrighted interfaces, the
original copyright holder who places the Library under this License may add
an explicit geographical distribution limitation excluding those countries,
so that distribution is permitted only in or among countries not thus
excluded. In such case, this License incorporates the limitation as if
written in the body of this License.
13. The Free Software Foundation may publish revised and/or new
versions of the Lesser General Public License from time to time.
Such new versions will be similar in spirit to the present version,
but may differ in detail to address new problems or concerns.
Each version is given a distinguishing version number. If the Library
specifies a version number of this License which applies to it and
"any later version", you have the option of following the terms and
conditions either of that version or of any later version published by
the Free Software Foundation. If the Library does not specify a
license version number, you may choose any version ever published by
the Free Software Foundation.
14. If you wish to incorporate parts of the Library into other free
programs whose distribution conditions are incompatible with these,
write to the author to ask for permission. For software which is
copyrighted by the Free Software Foundation, write to the Free
Software Foundation; we sometimes make exceptions for this. Our
decision will be guided by the two goals of preserving the free status
of all derivatives of our free software and of promoting the sharing
and reuse of software generally.
NO WARRANTY
15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
DAMAGES.
END OF TERMS AND CONDITIONS
How to Apply These Terms to Your New Libraries
If you develop a new library, and you want it to be of the greatest
possible use to the public, we recommend making it free software that
everyone can redistribute and change. You can do so by permitting
redistribution under these terms (or, alternatively, under the terms of the
ordinary General Public License).
To apply these terms, attach the following notices to the library. It is
safest to attach them to the start of each source file to most effectively
convey the exclusion of warranty; and each file should have at least the
"copyright" line and a pointer to where the full notice is found.
Copyright (C)
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
Also add information on how to contact you by electronic and paper mail.
You should also get your employer (if you work as a programmer) or your
school, if any, to sign a "copyright disclaimer" for the library, if
necessary. Here is a sample; alter the names:
Yoyodyne, Inc., hereby disclaims all copyright interest in the
library `Frob' (a library for tweaking knobs) written by James Random Hacker.
, 1 April 1990
Ty Coon, President of Vice
That's all there is to it!
vim: et sw=4 sts=4
htmlpurifier/plugins/phorum/htmlpurifier/README 0000644 00000000114 14716425662 0015654 0 ustar 00 The contents of the library/ folder should be here.
vim: et sw=4 sts=4
htmlpurifier/plugins/phorum/config.default.php 0000644 00000001451 14716425662 0015670 0 ustar 00 set('HTML.Allowed',
// alphabetically sorted
'a[href|title]
abbr[title]
acronym[title]
b
blockquote[cite]
br
caption
cite
code
dd
del
dfn
div
dl
dt
em
i
img[src|alt|title|class]
ins
kbd
li
ol
p
pre
s
strike
strong
sub
sup
table
tbody
td
tfoot
th
thead
tr
tt
u
ul
var');
$config->set('AutoFormat.AutoParagraph', true);
$config->set('AutoFormat.Linkify', true);
$config->set('HTML.Doctype', 'XHTML 1.0 Transitional');
$config->set('Core.AggressivelyFixLt', true);
$config->set('Core.Encoding', $GLOBALS['PHORUM']['DATA']['CHARSET']); // we'll change this eventually
if (strtolower($GLOBALS['PHORUM']['DATA']['CHARSET']) !== 'utf-8') {
$config->set('Core.EscapeNonASCIICharacters', true);
}
// vim: et sw=4 sts=4
htmlpurifier/plugins/phorum/settings.php 0000644 00000003631 14716425662 0014642 0 ustar 00 ';
phorum_htmlpurifier_show_form();
// vim: et sw=4 sts=4
htmlpurifier/plugins/phorum/migrate.bbcode.php 0000644 00000002051 14716425662 0015642 0 ustar 00 . Place the contents of
the library/ folder in the htmlpurifier/htmlpurifier folder. Your directory
structure will look like:
phorum/
mods/
htmlpurifier/
htmlpurifier/
HTMLPurifier.auto.php
... - other files
HTMLPurifier/
Advanced users:
If you have HTML Purifier installed elsewhere on your server,
all you need is an HTMLPurifier.auto.php file in the library folder which
includes the HTMLPurifier.auto.php file in your install.
4. MIGRATE
----------
If you're setting up a new Phorum installation, all you need to do is create
a blank migrate.php file in the htmlpurifier module folder (NOT the library
folder.
If you have an old Phorum installation and was using BBCode,
copy migrate.bbcode.php to migrate.php. If you were using a different input
format, follow the instructions in migrate.bbcode.php to create your own custom
migrate.php file.
Your directory structure should now look like this:
phorum/
mods/
htmlpurifier/
migrate.php
5. ENABLE
---------
Navigate to your Phorum admin panel at http://example.com/phorum/admin.php,
click on Global Settings > Modules, scroll to "HTML Purifier Phorum Mod" and
turn it On.
6. MIGRATE SIGNATURES
---------------------
If you're setting up a new Phorum installation, skip this step.
If you allowed your users to make signatures, navigate to the module settings
page of HTML Purifier (Global Settings > Modules > HTML Purifier Phorum Mod >
Configure), type in "yes" in the "Confirm" box, and press "Migrate."
ONLY DO THIS ONCE! BE SURE TO BACK UP YOUR DATABASE!
7. CONFIGURE
------------
Configure using Edit settings. See that page for more information.
vim: et sw=4 sts=4
htmlpurifier/plugins/phorum/.gitignore 0000644 00000000033 14716425662 0014252 0 ustar 00 migrate.php
htmlpurifier/*
htmlpurifier/plugins/phorum/info.txt 0000644 00000001303 14716425662 0013757 0 ustar 00 title: HTML Purifier Phorum Mod
desc: This module enables standards-compliant HTML filtering on Phorum. Please check migrate.bbcode.php before enabling this mod.
author: Edward Z. Yang
url: http://htmlpurifier.org/
version: 4.0.0
hook: format|phorum_htmlpurifier_format
hook: quote|phorum_htmlpurifier_quote
hook: posting_custom_action|phorum_htmlpurifier_posting
hook: common|phorum_htmlpurifier_common
hook: before_editor|phorum_htmlpurifier_before_editor
hook: tpl_editor_after_subject|phorum_htmlpurifier_editor_after_subject
# This module is meant to be a drop-in for bbcode, so make it run last.
priority: run module after *
priority: run hook format after *
vim: et sw=4 sts=4
htmlpurifier/plugins/phorum/README 0000644 00000004310 14716425662 0013144 0 ustar 00
HTML Purifier Phorum Mod - Filter your HTML the Standards-Compliant Way!
This Phorum mod enables HTML posting on Phorum. Under normal circumstances,
this would cause a huge security risk, but because we are running
HTML through HTML Purifier, output is guaranteed to be XSS free and
standards-compliant.
This mod requires HTML input, and previous markup languages need to be
converted accordingly. Thus, it is vital that you create a 'migrate.php'
file that works with your installation. If you're using the built-in
BBCode formatting, simply move migrate.bbcode.php to that place; for
other markup languages, consult said file for instructions on how
to adapt it to your needs.
-- NOTE -------------------------------------------------
You can also run this module in parallel with another
formatting module; this module attempts to place itself
at the end of the filtering chain. However, if any
previous modules produce insecure HTML (for instance,
a JavaScript email obfuscator) they will get cleaned.
This module will not work if 'migrate.php' is not created, and an improperly
made migration file may *CORRUPT* Phorum, so please take your time to
do this correctly. It should go without saying to *BACKUP YOUR DATABASE*
before attempting anything here. If no migration is necessary, you can
simply create a blank migrate.php file. HTML Purifier is smart and will
not re-migrate already processed messages. However, the original code
is irretrievably lost (we may change this in the future.)
This module will not automatically migrate user signatures, because this
process may take a long time. After installing the HTML Purifier module and
then configuring 'migrate.php', navigate to Settings and click 'Migrate
Signatures' to migrate all user signatures to HTML.
All of HTML Purifier's usual functions are configurable via the mod settings
page. If you require custom configuration, create config.php file in
the mod directory that edits a $config variable. Be sure, also, to
set $PHORUM['mod_htmlpurifier']['wysiwyg'] to TRUE if you are using a
WYSIWYG editor (you can do this through a common hook or the web
configuration form).
Visit HTML Purifier at .
vim: et sw=4 sts=4
htmlpurifier/plugins/phorum/htmlpurifier.php 0000644 00000027525 14716425662 0015524 0 ustar 00 $message){
if(isset($message['body'])) {
if ($message_id) {
// we're dealing with a real message, not a fake, so
// there a number of shortcuts that can be taken
if (isset($message['meta']['htmlpurifier_light'])) {
// format hook was called outside of Phorum's normal
// functions, do the abridged purification
$data[$message_id]['body'] = $purifier->purify($message['body']);
continue;
}
if (!empty($PHORUM['args']['purge'])) {
// purge the cache, must be below the following if
unset($message['meta']['body_cache']);
}
if (
isset($message['meta']['body_cache']) &&
isset($message['meta']['body_cache_serial']) &&
$message['meta']['body_cache_serial'] == $cache_serial
) {
// cached version is present, bail out early
$data[$message_id]['body'] = base64_decode($message['meta']['body_cache']);
continue;
}
}
// migration might edit this array, that's why it's defined
// so early
$updated_message = array();
// create the $body variable
if (
$message_id && // message must be real to migrate
!isset($message['meta']['body_cache_serial'])
) {
// perform migration
$fake_data = array();
list($signature, $edit_message) = phorum_htmlpurifier_remove_sig_and_editmessage($message);
$fake_data[$message_id] = $message;
$fake_data = phorum_htmlpurifier_migrate($fake_data);
$body = $fake_data[$message_id]['body'];
$body = str_replace("\n", "\n", $body);
$updated_message['body'] = $body; // save it in
$body .= $signature . $edit_message; // add it back in
} else {
// reverse Phorum's pre-processing
$body = $message['body'];
// order is important
$body = str_replace("\n", "\n", $body);
$body = str_replace(array('<','>','&', '"'), array('<','>','&','"'), $body);
if (!$message_id && defined('PHORUM_CONTROL_CENTER')) {
// we're in control.php, so it was double-escaped
$body = str_replace(array('<','>','&', '"'), array('<','>','&','"'), $body);
}
}
$body = $purifier->purify($body);
// dynamically update the cache (MUST BE DONE HERE!)
// this is inefficient because it's one db call per
// cache miss, but once the cache is in place things are
// a lot zippier.
if ($message_id) { // make sure it's not a fake id
$updated_message['meta'] = $message['meta'];
$updated_message['meta']['body_cache'] = base64_encode($body);
$updated_message['meta']['body_cache_serial'] = $cache_serial;
phorum_db_update_message($message_id, $updated_message);
}
// must not get overloaded until after we cache it, otherwise
// we'll inadvertently change the original text
$data[$message_id]['body'] = $body;
}
}
return $data;
}
// -----------------------------------------------------------------------
// This is fragile code, copied from read.php:596 (Phorum 5.2.6). Please
// keep this code in-sync with Phorum
/**
* Generates a signature based on a message array
*/
function phorum_htmlpurifier_generate_sig($row)
{
$phorum_sig = '';
if(isset($row["user"]["signature"])
&& isset($row['meta']['show_signature']) && $row['meta']['show_signature']==1){
$phorum_sig=trim($row["user"]["signature"]);
if(!empty($phorum_sig)){
$phorum_sig="\n\n$phorum_sig";
}
}
return $phorum_sig;
}
/**
* Generates an edit message based on a message array
*/
function phorum_htmlpurifier_generate_editmessage($row)
{
$PHORUM = $GLOBALS['PHORUM'];
$editmessage = '';
if(isset($row['meta']['edit_count']) && $row['meta']['edit_count'] > 0) {
$editmessage = str_replace ("%count%", $row['meta']['edit_count'], $PHORUM["DATA"]["LANG"]["EditedMessage"]);
$editmessage = str_replace ("%lastedit%", phorum_date($PHORUM["short_date_time"],$row['meta']['edit_date']), $editmessage);
$editmessage = str_replace ("%lastuser%", $row['meta']['edit_username'], $editmessage);
$editmessage = "\n\n\n\n$editmessage";
}
return $editmessage;
}
// End fragile code
// -----------------------------------------------------------------------
/**
* Removes the signature and edit message from a message
* @param $row Message passed by reference
*/
function phorum_htmlpurifier_remove_sig_and_editmessage(&$row)
{
$signature = phorum_htmlpurifier_generate_sig($row);
$editmessage = phorum_htmlpurifier_generate_editmessage($row);
$replacements = array();
// we need to remove add as that is the form these
// extra bits are in.
if ($signature) $replacements[str_replace("\n", "\n", $signature)] = '';
if ($editmessage) $replacements[str_replace("\n", "\n", $editmessage)] = '';
$row['body'] = strtr($row['body'], $replacements);
return array($signature, $editmessage);
}
/**
* Indicate that data is fully HTML and not from migration, invalidate
* previous caches
* @note This function could generate the actual cache entries, but
* since there's data missing that must be deferred to the first read
*/
function phorum_htmlpurifier_posting($message)
{
$PHORUM = $GLOBALS["PHORUM"];
unset($message['meta']['body_cache']); // invalidate the cache
$message['meta']['body_cache_serial'] = $PHORUM['mod_htmlpurifier']['body_cache_serial'];
return $message;
}
/**
* Overload quoting mechanism to prevent default, mail-style quote from happening
*/
function phorum_htmlpurifier_quote($array)
{
$PHORUM = $GLOBALS["PHORUM"];
$purifier =& HTMLPurifier::getInstance();
$text = $purifier->purify($array[1]);
$source = htmlspecialchars($array[0]);
return "\n$text\n
";
}
/**
* Ensure that our format hook is processed last. Also, loads the library.
* @credits
*/
function phorum_htmlpurifier_common()
{
require_once(dirname(__FILE__).'/htmlpurifier/HTMLPurifier.auto.php');
require(dirname(__FILE__).'/init-config.php');
$config = phorum_htmlpurifier_get_config();
HTMLPurifier::getInstance($config);
// increment revision.txt if you want to invalidate the cache
$GLOBALS['PHORUM']['mod_htmlpurifier']['body_cache_serial'] = $config->getSerial();
// load migration
if (file_exists(dirname(__FILE__) . '/migrate.php')) {
include(dirname(__FILE__) . '/migrate.php');
} else {
echo 'Error: No migration path specified for HTML Purifier, please check
modes/htmlpurifier/migrate.bbcode.php for instructions on
how to migrate from your previous markup language.';
exit;
}
if (!function_exists('phorum_htmlpurifier_migrate')) {
// Dummy function
function phorum_htmlpurifier_migrate($data) {return $data;}
}
}
/**
* Pre-emptively performs purification if it looks like a WYSIWYG editor
* is being used
*/
function phorum_htmlpurifier_before_editor($message)
{
if (!empty($GLOBALS['PHORUM']['mod_htmlpurifier']['wysiwyg'])) {
if (!empty($message['body'])) {
$body = $message['body'];
// de-entity-ize contents
$body = str_replace(array('<','>','&'), array('<','>','&'), $body);
$purifier =& HTMLPurifier::getInstance();
$body = $purifier->purify($body);
// re-entity-ize contents
$body = htmlspecialchars($body, ENT_QUOTES, $GLOBALS['PHORUM']['DATA']['CHARSET']);
$message['body'] = $body;
}
}
return $message;
}
function phorum_htmlpurifier_editor_after_subject()
{
// don't show this message if it's a WYSIWYG editor, since it will
// then be handled automatically
if (!empty($GLOBALS['PHORUM']['mod_htmlpurifier']['wysiwyg'])) {
$i = $GLOBALS['PHORUM']['DATA']['MODE'];
if ($i == 'quote' || $i == 'edit' || $i == 'moderation') {
?>
Notice: HTML has been scrubbed for your safety.
If you would like to see the original, turn off WYSIWYG mode
(consult your administrator for details.)
HTML input is enabled. Make sure you escape all HTML and
angled brackets with <
and >
.
config;
if ($config->get('AutoFormat.AutoParagraph')) {
?>
Auto-paragraphing is enabled. Double
newlines will be converted to paragraphs; for single
newlines, use the pre
tag.
getDefinition('HTML');
$allowed = array();
foreach ($html_definition->info as $name => $x) $allowed[] = "
$name
";
sort($allowed);
$allowed_text = implode(', ', $allowed);
?>
Allowed tags: .
For inputting literal code such as HTML and PHP for display, use
CDATA tags to auto-escape your angled brackets, and pre
to preserve newlines:
<pre><![CDATA[
Place code here
]]></pre>
Power users, you can hide this notice with:
.htmlpurifier-help {display:none;}
mods/htmlpurifier/config.php already exists. To change
settings, edit that file. To use the web form, delete that file.
";
} else {
$config = phorum_htmlpurifier_get_config(true);
if (!isset($_POST['reset'])) $config->mergeArrayFromForm($_POST, 'config', $PHORUM['mod_htmlpurifier']['directives']);
$PHORUM['mod_htmlpurifier']['config'] = $config->getAll();
}
$PHORUM['mod_htmlpurifier']['wysiwyg'] = !empty($_POST['wysiwyg']);
$PHORUM['mod_htmlpurifier']['suppress_message'] = !empty($_POST['suppress_message']);
if(!phorum_htmlpurifier_commit_settings()){
$error="Database error while updating settings.";
} else {
echo "Settings Updated
";
}
}
function phorum_htmlpurifier_commit_settings()
{
global $PHORUM;
return phorum_db_update_settings(array("mod_htmlpurifier"=>$PHORUM["mod_htmlpurifier"]));
}
// vim: et sw=4 sts=4
htmlpurifier/plugins/phorum/settings/form.php 0000644 00000007451 14716425662 0015611 0 ustar 00 hidden("module", "modsettings");
$frm->hidden("mod", "htmlpurifier"); // this is the directory name that the Settings file lives in
if (!empty($error)){
echo "$error
";
}
$frm->addbreak("Edit settings for the HTML Purifier module");
$frm->addMessage('The box below sets $PHORUM[\'mod_htmlpurifier\'][\'wysiwyg\']
.
When checked, contents sent for edit are now purified and the
informative message is disabled. If your WYSIWYG editor is disabled for
admin edits, you can safely keep this unchecked.
');
$frm->addRow('Use WYSIWYG?', $frm->checkbox('wysiwyg', '1', '', $PHORUM['mod_htmlpurifier']['wysiwyg']));
$frm->addMessage('The box below sets $PHORUM[\'mod_htmlpurifier\'][\'suppress_message\']
,
which removes the big how-to use
HTML Purifier message.
');
$frm->addRow('Suppress information?', $frm->checkbox('suppress_message', '1', '', $PHORUM['mod_htmlpurifier']['suppress_message']));
$frm->addMessage('Click on directive links to read what each option does
(links do not open in new windows).
For more flexibility (for instance, you want to edit the full
range of configuration directives), you can create a config.php
file in your mods/htmlpurifier/ directory. Doing so will,
however, make the web configuration interface unavailable.
');
require_once 'HTMLPurifier/Printer/ConfigForm.php';
$htmlpurifier_form = new HTMLPurifier_Printer_ConfigForm('config', 'http://htmlpurifier.org/live/configdoc/plain.html#%s');
$htmlpurifier_form->setTextareaDimensions(23, 7); // widen a little, since we have space
$frm->addMessage($htmlpurifier_form->render(
$config, $PHORUM['mod_htmlpurifier']['directives'], false));
$frm->addMessage("Warning: Changing HTML Purifier's configuration will invalidate
the cache. Expect to see a flurry of database activity after you change
any of these settings.");
$frm->addrow('Reset to defaults:', $frm->checkbox("reset", "1", "", false));
// hack to include extra styling
echo '';
$js = $htmlpurifier_form->getJavaScript();
echo '';
$frm->show();
}
function phorum_htmlpurifier_show_config_info()
{
global $PHORUM;
// update mod_htmlpurifier for housekeeping
phorum_htmlpurifier_commit_settings();
// politely tell user how to edit settings manually
?>
How to edit settings for HTML Purifier module
A config.php file exists in your mods/htmlpurifier/
directory. This file contains your custom configuration: in order to
change it, please navigate to that file and edit it accordingly.
You can also set $GLOBALS['PHORUM']['mod_htmlpurifier']['wysiwyg']
or $GLOBALS['PHORUM']['mod_htmlpurifier']['suppress_message']
To use the web interface, delete config.php (or rename it to
config.php.bak).
Warning: Changing HTML Purifier's configuration will invalidate
the cache. Expect to see a flurry of database activity after you change
any of these settings.
$PHORUM["mod_htmlpurifier"]));
$offset = 1;
} elseif (!empty($_GET['migrate-sigs']) && $PHORUM['mod_htmlpurifier']['migrate-sigs']) {
$offset = (int) $_GET['migrate-sigs'];
}
return $offset;
}
function phorum_htmlpurifier_migrate_sigs($offset)
{
global $PHORUM;
if(!$offset) return; // bail out quick if $offset == 0
// theoretically, we could get rid of this multi-request
// doo-hickery if safe mode is off
@set_time_limit(0); // attempt to let this run
$increment = $PHORUM['mod_htmlpurifier']['migrate-sigs-increment'];
require_once(dirname(__FILE__) . '/../migrate.php');
// migrate signatures
// do this in batches so we don't run out of time/space
$end = $offset + $increment;
$user_ids = array();
for ($i = $offset; $i < $end; $i++) {
$user_ids[] = $i;
}
$userinfos = phorum_db_user_get_fields($user_ids, 'signature');
foreach ($userinfos as $i => $user) {
if (empty($user['signature'])) continue;
$sig = $user['signature'];
// perform standard Phorum processing on the sig
$sig = str_replace(array("&","<",">"), array("&","<",">"), $sig);
$sig = preg_replace("/<((http|https|ftp):\/\/[a-z0-9;\/\?:@=\&\$\-_\.\+!*'\(\),~%]+?)>/i", "$1", $sig);
// prepare fake data to pass to migration function
$fake_data = array(array("author"=>"", "email"=>"", "subject"=>"", 'body' => $sig));
list($fake_message) = phorum_htmlpurifier_migrate($fake_data);
$user['signature'] = $fake_message['body'];
if (!phorum_api_user_save($user)) {
exit('Error while saving user data');
}
}
unset($userinfos); // free up memory
// query for highest ID in database
$type = $PHORUM['DBCONFIG']['type'];
$sql = "select MAX(user_id) from {$PHORUM['user_table']}";
$row = phorum_db_interact(DB_RETURN_ROW, $sql);
$top_id = (int) $row[0];
$offset += $increment;
if ($offset > $top_id) { // test for end condition
echo 'Migration finished';
$PHORUM['mod_htmlpurifier']['migrate-sigs'] = false;
phorum_htmlpurifier_commit_settings();
return true;
}
$host = $_SERVER['HTTP_HOST'];
$uri = rtrim(dirname($_SERVER['PHP_SELF']), '/\\');
$extra = 'admin.php?module=modsettings&mod=htmlpurifier&migrate-sigs=' . $offset;
// relies on output buffering to work
header("Location: http://$host$uri/$extra");
exit;
}
// vim: et sw=4 sts=4
htmlpurifier/plugins/phorum/settings/migrate-sigs-form.php 0000644 00000001603 14716425662 0020173 0 ustar 00 hidden("module", "modsettings");
$frm->hidden("mod", "htmlpurifier");
$frm->hidden("migrate-sigs", "1");
$frm->addbreak("Migrate user signatures to HTML");
$frm->addMessage('This operation will migrate your users signatures
to HTML. This process is irreversible and must only be performed once.
Type in yes in the confirmation field to migrate.');
if (!file_exists(dirname(__FILE__) . '/../migrate.php')) {
$frm->addMessage('Migration file does not exist, cannot migrate signatures.
Please check migrate.bbcode.php on how to create an appropriate file.');
} else {
$frm->addrow('Confirm:', $frm->text_box("confirmation", ""));
}
$frm->show();
}
// vim: et sw=4 sts=4
htmlpurifier/plugins/phorum/init-config.php 0000644 00000001650 14716425662 0015207 0 ustar 00 is an open source PHP application framework.
I first came across them in my referrer logs when tillda asked if anyone
could implement an HTML Purifier plugin. This forum thread
eventually resulted
in the fruition of this plugin that davidm says, "is on top of my favorite
list." HTML Purifier goes great with WYSIWYG editors!
1. Credits
PaulGregory wrote the overall structure of the code. I added the
slashes hack.
2. Install
First, you need to place HTML Purifier library somewhere. The code here
assumes that you've placed in MODx's assets/plugins/htmlpurifier (no version
number).
Log into the manager, and navigate:
Resources > Manage Resources > Plugins tab > New Plugin
Type in a name (probably HTML Purifier), and copy paste this code into the
textarea:
--------------------------------------------------------------------------------
$e = &$modx->Event;
if ($e->name == 'OnBeforeDocFormSave') {
global $content;
include_once '../assets/plugins/htmlpurifier/library/HTMLPurifier.auto.php';
$purifier = new HTMLPurifier();
static $magic_quotes = null;
if ($magic_quotes === null) {
// this is an ugly hack because this hook hasn't
// had the backslashes removed yet when magic_quotes_gpc is on,
// but HTMLPurifier must not have the quotes slashed.
$magic_quotes = get_magic_quotes_gpc();
}
if ($magic_quotes) $content = stripslashes($content);
$content = $purifier->purify($content);
if ($magic_quotes) $content = addslashes($content);
}
--------------------------------------------------------------------------------
Then navigate to the System Events tab and check "OnBeforeDocFormSave".
Save the plugin. HTML Purifier now is integrated!
3. Making sure it works
You can test HTML Purifier by deliberately putting in crappy HTML and seeing
whether or not it gets fixed. A better way is to put in something like this:
Il est bon
...and seeing whether or not the content comes out as:
Il est bon
(lang to xml:lang synchronization is one of the many features HTML Purifier
has).
4. Caveat Emptor
This code does not intercept save requests from the QuickEdit plugin, this may
be added in a later version. It also modifies things on save, so there's a
slight chance that HTML Purifier may make a boo-boo and accidently mess things
up (the original version is not saved).
Finally, make sure that MODx is using UTF-8. If you are using, say, a French
localisation, you may be using Latin-1, if that's the case, configure
HTML Purifier properly like this:
$config = HTMLPurifier_Config::createDefault();
$config->set('Core', 'Encoding', 'ISO-8859-1'); // or whatever encoding
$purifier = new HTMLPurifier($config);
5. Known Bugs
'rn' characters sometimes mysteriously appear after purification. We are
currently investigating this issue. See:
6. See Also
A modified version of Jot 1.1.3 is available, which integrates with HTML
Purifier. You can check it out here:
X. Changelog
2008-06-16
- Updated code to work with 3.1.0 and later
- Add Known Bugs and See Also section
vim: et sw=4 sts=4
htmlpurifier/INSTALL.fr.utf8 0000644 00000003553 14716425662 0011625 0 ustar 00
Installation
Comment installer HTML Purifier
Attention : Ce document est encodé en UTF-8, si les lettres avec des accents
ne s'affichent pas, prenez un meilleur éditeur de texte.
L'installation de HTML Purifier est très simple, parce qu'il n'a pas besoin
de configuration. Pour les utilisateurs impatients, le code se trouve dans le
pied de page, mais je recommande de lire le document.
1. Compatibilité
HTML Purifier fonctionne avec PHP 5. PHP 5.0.5 est la dernière version testée.
Il ne dépend pas d'autres librairies.
Les extensions optionnelles sont iconv (généralement déjà installée) et tidy
(répendue aussi). Si vous utilisez UTF-8 et que vous ne voulez pas l'indentation,
vous pouvez utiliser HTML Purifier sans ces extensions.
2. Inclure la librairie
Quand vous devez l'utilisez, incluez le :
require_once('/path/to/library/HTMLPurifier.auto.php');
Ne pas l'inclure si ce n'est pas nécessaire, car HTML Purifier est lourd.
HTML Purifier utilise "autoload". Si vous avez défini la fonction __autoload,
vous devez ajouter cette fonction :
spl_autoload_register('__autoload')
Plus d'informations dans le document "INSTALL".
3. Installation rapide
Si votre site Web est en UTF-8 et XHTML Transitional, utilisez :
purify($html_a_purifier);
?>
Sinon, utilisez :
set('Core', 'Encoding', 'ISO-8859-1'); //Remplacez par votre
encodage
$config->set('Core', 'XHTML', true); //Remplacer par false si HTML 4.01
$purificateur = new HTMLPurifier($config);
$html_propre = $purificateur->purify($html_a_purifier);
?>
vim: et sw=4 sts=4
htmlpurifier/error_log; 0000644 00000075400 14716425662 0011311 0 ustar 00 [16-Sep-2023 14:37:22 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[16-Sep-2023 14:37:22 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[25-Sep-2023 16:22:18 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[25-Sep-2023 16:22:18 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[25-Sep-2023 19:37:26 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[25-Sep-2023 19:37:26 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[27-Sep-2023 00:32:50 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[27-Sep-2023 00:32:50 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[27-Sep-2023 00:50:48 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[27-Sep-2023 00:50:48 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[14-Nov-2023 04:02:23 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[14-Nov-2023 04:02:23 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[15-Nov-2023 01:02:53 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[15-Nov-2023 01:02:53 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[15-Nov-2023 13:32:32 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[15-Nov-2023 13:32:32 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[17-Nov-2023 13:40:03 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[17-Nov-2023 13:40:03 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[06-Dec-2023 13:08:30 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[06-Dec-2023 13:08:30 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[13-Jan-2024 10:19:35 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[13-Jan-2024 10:19:35 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[15-Feb-2024 04:10:08 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[15-Feb-2024 04:10:08 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[19-Feb-2024 11:11:59 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[19-Feb-2024 11:11:59 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[20-Feb-2024 09:40:14 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[20-Feb-2024 09:40:14 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[27-Feb-2024 12:23:36 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[27-Feb-2024 12:23:36 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[03-Mar-2024 07:32:44 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[03-Mar-2024 07:32:44 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[15-Apr-2024 12:49:49 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[15-Apr-2024 12:49:49 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[17-Apr-2024 03:39:57 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[17-Apr-2024 03:39:57 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[29-Apr-2024 00:45:40 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[29-Apr-2024 00:45:40 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[04-May-2024 22:10:36 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[04-May-2024 22:10:36 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[05-May-2024 08:06:55 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[05-May-2024 08:06:55 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[05-May-2024 18:18:16 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[05-May-2024 18:18:16 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[13-May-2024 08:14:16 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[13-May-2024 08:14:16 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[14-May-2024 18:36:12 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[14-May-2024 18:36:12 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[18-May-2024 19:05:41 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[18-May-2024 19:05:41 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[21-May-2024 18:02:38 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[21-May-2024 18:02:38 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[22-May-2024 12:33:45 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[22-May-2024 12:33:45 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[04-Jun-2024 02:25:17 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[04-Jun-2024 02:25:17 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[09-Jun-2024 15:32:55 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[09-Jun-2024 15:32:55 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[18-Jun-2024 22:44:41 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[18-Jun-2024 22:44:41 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[19-Jun-2024 07:42:37 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[19-Jun-2024 07:42:37 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[19-Jun-2024 20:31:57 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[19-Jun-2024 20:31:57 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[20-Jun-2024 20:52:00 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[20-Jun-2024 20:52:00 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[26-Jun-2024 11:31:53 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[26-Jun-2024 11:31:53 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[26-Jun-2024 16:28:07 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[26-Jun-2024 16:28:07 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[30-Jun-2024 08:12:01 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[30-Jun-2024 08:12:01 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[30-Jun-2024 16:47:11 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[30-Jun-2024 16:47:11 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[02-Jul-2024 00:10:03 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[02-Jul-2024 00:10:03 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[05-Jul-2024 08:57:14 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[05-Jul-2024 08:57:14 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[09-Jul-2024 01:14:59 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[09-Jul-2024 01:14:59 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[22-Jul-2024 16:42:48 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[22-Jul-2024 16:42:48 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[23-Jul-2024 22:24:55 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[23-Jul-2024 22:24:55 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[28-Jul-2024 14:13:56 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[28-Jul-2024 14:13:56 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[28-Jul-2024 17:08:01 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[28-Jul-2024 17:08:01 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[29-Jul-2024 16:23:53 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[29-Jul-2024 16:23:53 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[04-Aug-2024 15:25:44 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[04-Aug-2024 15:25:44 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[10-Aug-2024 16:00:09 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[10-Aug-2024 16:00:09 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[25-Aug-2024 20:25:18 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[25-Aug-2024 20:25:18 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[30-Aug-2024 04:29:12 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[30-Aug-2024 04:29:12 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[01-Sep-2024 20:21:25 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[01-Sep-2024 20:21:25 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[03-Sep-2024 18:51:39 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[03-Sep-2024 18:51:39 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[07-Sep-2024 06:22:58 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[07-Sep-2024 06:22:58 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[07-Sep-2024 06:28:13 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[07-Sep-2024 06:28:13 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[10-Sep-2024 04:18:55 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[10-Sep-2024 04:18:55 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[11-Sep-2024 20:13:09 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[11-Sep-2024 20:13:09 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[02-Oct-2024 01:51:37 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[02-Oct-2024 01:51:37 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[03-Oct-2024 22:19:36 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[03-Oct-2024 22:19:36 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[06-Oct-2024 23:01:23 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[06-Oct-2024 23:01:23 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[09-Oct-2024 14:52:55 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[09-Oct-2024 14:52:55 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[18-Oct-2024 10:24:41 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[18-Oct-2024 10:24:41 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[18-Oct-2024 14:42:17 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[18-Oct-2024 14:42:17 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[31-Oct-2024 11:33:17 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[31-Oct-2024 11:33:17 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[04-Nov-2024 03:43:08 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[04-Nov-2024 03:43:08 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[08-Nov-2024 23:36:51 America/Fortaleza] PHP Warning: require_once(PEAR/PackageFileManager2.php): failed to open stream: No such file or directory in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
[08-Nov-2024 23:36:51 America/Fortaleza] PHP Fatal error: require_once(): Failed opening required 'PEAR/PackageFileManager2.php' (include_path='.:/opt/php71/lib/php') in /home/mgatv524/public_html/edurocha/vendor/ezyang/htmlpurifier/package.php on line 5
htmlpurifier/VERSION 0000644 00000000005 14716425662 0010336 0 ustar 00 4.9.3 htmlpurifier/phpdoc.ini 0000644 00000007712 14716425662 0011260 0 ustar 00 ;; phpDocumentor parse configuration file
;;
;; This file is designed to cut down on repetitive typing on the command-line or web interface
;; You can copy this file to create a number of configuration files that can be used with the
;; command-line switch -c, as in phpdoc -c default.ini or phpdoc -c myini.ini. The web
;; interface will automatically generate a list of .ini files that can be used.
;;
;; default.ini is used to generate the online manual at http://www.phpdoc.org/docs
;;
;; ALL .ini files must be in the user subdirectory of phpDocumentor with an extension of .ini
;;
;; Copyright 2002, Greg Beaver
;;
;; WARNING: do not change the name of any command-line parameters, phpDocumentor will ignore them
[Parse Data]
;; title of all the documentation
;; legal values: any string
title = HTML Purifier API Documentation
;; parse files that start with a . like .bash_profile
;; legal values: true, false
hidden = false
;; show elements marked @access private in documentation by setting this to on
;; legal values: on, off
parseprivate = off
;; parse with javadoc-like description (first sentence is always the short description)
;; legal values: on, off
javadocdesc = on
;; add any custom @tags separated by commas here
;; legal values: any legal tagname separated by commas.
;customtags = mytag1,mytag2
;; This is only used by the XML:DocBook/peardoc2 converter
defaultcategoryname = Documentation
;; what is the main package?
;; legal values: alphanumeric string plus - and _
defaultpackagename = HTMLPurifier
;; output any parsing information? set to on for cron jobs
;; legal values: on
;quiet = on
;; parse a PEAR-style repository. Do not turn this on if your project does
;; not have a parent directory named "pear"
;; legal values: on/off
;pear = on
;; where should the documentation be written?
;; legal values: a legal path
target = docs/phpdoc
;; Which files should be parsed out as special documentation files, such as README,
;; INSTALL and CHANGELOG? This overrides the default files found in
;; phpDocumentor.ini (this file is not a user .ini file, but the global file)
readmeinstallchangelog = README, INSTALL, NEWS, WYSIWYG, SLOW, LICENSE, CREDITS
;; limit output to the specified packages, even if others are parsed
;; legal values: package names separated by commas
;packageoutput = package1,package2
;; comma-separated list of files to parse
;; legal values: paths separated by commas
;filename = /path/to/file1,/path/to/file2,fileincurrentdirectory
;; comma-separated list of directories to parse
;; legal values: directory paths separated by commas
;directory = /path1,/path2,.,..,subdirectory
;directory = /home/jeichorn/cvs/pear
directory = .
;; template base directory (the equivalent directory of /phpDocumentor)
;templatebase = /path/to/my/templates
;; directory to find any example files in through @example and {@example} tags
;examplesdir = /path/to/my/templates
;; comma-separated list of files, directories or wildcards ? and * (any wildcard) to ignore
;; legal values: any wildcard strings separated by commas
;ignore = /path/to/ignore*,*list.php,myfile.php,subdirectory/
ignore = *tests*,*benchmarks*,*docs*,*test-settings.php,*configdoc*,*maintenance*,*smoketests*,*standalone*,*.svn*,*conf*
sourcecode = on
;; comma-separated list of Converters to use in outputformat:Convertername:templatedirectory format
;; legal values: HTML:frames:default,HTML:frames:l0l33t,HTML:frames:phpdoc.de,HTML:frames:phphtmllib,
;; HTML:frames:earthli,
;; HTML:frames:DOM/default,HTML:frames:DOM/l0l33t,HTML:frames:DOM/phpdoc.de,
;; HTML:frames:DOM/phphtmllib,HTML:frames:DOM/earthli
;; HTML:Smarty:default,HTML:Smarty:PHP,HTML:Smarty:HandS
;; PDF:default:default,CHM:default:default,XML:DocBook/peardoc2:default
output=HTML:frames:default
;; turn this option on if you want highlighted source code for every file
;; legal values: on/off
sourcecode = on
; vim: et sw=4 sts=4
htmlpurifier/CREDITS 0000644 00000000525 14716425662 0010315 0 ustar 00
CREDITS
Almost everything written by Edward Z. Yang (Ambush Commander). Lots of thanks
to the DevNetwork Community for their help (see docs/ref-devnetwork.html for
more details), Feyd especially (namely IPv6 and optimization). Thanks to RSnake
for letting me package his fantastic XSS cheatsheet for a smoketest.
vim: et sw=4 sts=4
htmlpurifier/release2-tag.php 0000644 00000001024 14716425662 0012254 0 ustar 00
...and the character encoding from this code:
If the character encoding declaration is missing, STOP NOW, and
read 'docs/enduser-utf8.html' (web accessible at
http://htmlpurifier.org/docs/enduser-utf8.html). In fact, even if it is
present, read this document anyway, as many websites specify their
document's character encoding incorrectly.
---------------------------------------------------------------------------
3. Including the library
The procedure is quite simple:
require_once '/path/to/library/HTMLPurifier.auto.php';
This will setup an autoloader, so the library's files are only included
when you use them.
Only the contents in the library/ folder are necessary, so you can remove
everything else when using HTML Purifier in a production environment.
If you installed HTML Purifier via PEAR, all you need to do is:
require_once 'HTMLPurifier.auto.php';
Please note that the usual PEAR practice of including just the classes you
want will not work with HTML Purifier's autoloading scheme.
Advanced users, read on; other users can skip to section 4.
Autoload compatibility
----------------------
HTML Purifier attempts to be as smart as possible when registering an
autoloader, but there are some cases where you will need to change
your own code to accomodate HTML Purifier. These are those cases:
PHP VERSION IS LESS THAN 5.1.2, AND YOU'VE DEFINED __autoload
Because spl_autoload_register() doesn't exist in early versions
of PHP 5, HTML Purifier has no way of adding itself to the autoload
stack. Modify your __autoload function to test
HTMLPurifier_Bootstrap::autoload($class)
For example, suppose your autoload function looks like this:
function __autoload($class) {
require str_replace('_', '/', $class) . '.php';
return true;
}
A modified version with HTML Purifier would look like this:
function __autoload($class) {
if (HTMLPurifier_Bootstrap::autoload($class)) return true;
require str_replace('_', '/', $class) . '.php';
return true;
}
Note that there *is* some custom behavior in our autoloader; the
original autoloader in our example would work for 99% of the time,
but would fail when including language files.
AN __autoload FUNCTION IS DECLARED AFTER OUR AUTOLOADER IS REGISTERED
spl_autoload_register() has the curious behavior of disabling
the existing __autoload() handler. Users need to explicitly
spl_autoload_register('__autoload'). Because we use SPL when it
is available, __autoload() will ALWAYS be disabled. If __autoload()
is declared before HTML Purifier is loaded, this is not a problem:
HTML Purifier will register the function for you. But if it is
declared afterwards, it will mysteriously not work. This
snippet of code (after your autoloader is defined) will fix it:
spl_autoload_register('__autoload')
Users should also be on guard if they use a version of PHP previous
to 5.1.2 without an autoloader--HTML Purifier will define __autoload()
for you, which can collide with an autoloader that was added by *you*
later.
For better performance
----------------------
Opcode caches, which greatly speed up PHP initialization for scripts
with large amounts of code (HTML Purifier included), don't like
autoloaders. We offer an include file that includes all of HTML Purifier's
files in one go in an opcode cache friendly manner:
// If /path/to/library isn't already in your include path, uncomment
// the below line:
// require '/path/to/library/HTMLPurifier.path.php';
require 'HTMLPurifier.includes.php';
Optional components still need to be included--you'll know if you try to
use a feature and you get a class doesn't exists error! The autoloader
can be used in conjunction with this approach to catch classes that are
missing. Simply add this afterwards:
require 'HTMLPurifier.autoload.php';
Standalone version
------------------
HTML Purifier has a standalone distribution; you can also generate
a standalone file from the full version by running the script
maintenance/generate-standalone.php . The standalone version has the
benefit of having most of its code in one file, so parsing is much
faster and the library is easier to manage.
If HTMLPurifier.standalone.php exists in the library directory, you
can use it like this:
require '/path/to/HTMLPurifier.standalone.php';
This is equivalent to including HTMLPurifier.includes.php, except that
the contents of standalone/ will be added to your path. To override this
behavior, specify a new HTMLPURIFIER_PREFIX where standalone files can
be found (usually, this will be one directory up, the "true" library
directory in full distributions). Don't forget to set your path too!
The autoloader can be added to the end to ensure the classes are
loaded when necessary; otherwise you can manually include them.
To use the autoloader, use this:
require 'HTMLPurifier.autoload.php';
For advanced users
------------------
HTMLPurifier.auto.php performs a number of operations that can be done
individually. These are:
HTMLPurifier.path.php
Puts /path/to/library in the include path. For high performance,
this should be done in php.ini.
HTMLPurifier.autoload.php
Registers our autoload handler HTMLPurifier_Bootstrap::autoload($class).
You can do these operations by yourself--in fact, you must modify your own
autoload handler if you are using a version of PHP earlier than PHP 5.1.2
(See "Autoload compatibility" above).
---------------------------------------------------------------------------
4. Configuration
HTML Purifier is designed to run out-of-the-box, but occasionally HTML
Purifier needs to be told what to do. If you answer no to any of these
questions, read on; otherwise, you can skip to the next section (or, if you're
into configuring things just for the heck of it, skip to 4.3).
* Am I using UTF-8?
* Am I using XHTML 1.0 Transitional?
If you answered no to any of these questions, instantiate a configuration
object and read on:
$config = HTMLPurifier_Config::createDefault();
4.1. Setting a different character encoding
You really shouldn't use any other encoding except UTF-8, especially if you
plan to support multilingual websites (read section three for more details).
However, switching to UTF-8 is not always immediately feasible, so we can
adapt.
HTML Purifier uses iconv to support other character encodings, as such,
any encoding that iconv supports
HTML Purifier supports with this code:
$config->set('Core.Encoding', /* put your encoding here */);
An example usage for Latin-1 websites (the most common encoding for English
websites):
$config->set('Core.Encoding', 'ISO-8859-1');
Note that HTML Purifier's support for non-Unicode encodings is crippled by the
fact that any character not supported by that encoding will be silently
dropped, EVEN if it is ampersand escaped. If you want to work around
this, you are welcome to read docs/enduser-utf8.html for a fix,
but please be cognizant of the issues the "solution" creates (for this
reason, I do not include the solution in this document).
4.2. Setting a different doctype
For those of you using HTML 4.01 Transitional, you can disable
XHTML output like this:
$config->set('HTML.Doctype', 'HTML 4.01 Transitional');
Other supported doctypes include:
* HTML 4.01 Strict
* HTML 4.01 Transitional
* XHTML 1.0 Strict
* XHTML 1.0 Transitional
* XHTML 1.1
4.3. Other settings
There are more configuration directives which can be read about
here: They're a bit boring,
but they can help out for those of you who like to exert maximum control over
your code. Some of the more interesting ones are configurable at the
demo and are well worth looking into
for your own system.
For example, you can fine tune allowed elements and attributes, convert
relative URLs to absolute ones, and even autoparagraph input text! These
are, respectively, %HTML.Allowed, %URI.MakeAbsolute and %URI.Base, and
%AutoFormat.AutoParagraph. The %Namespace.Directive naming convention
translates to:
$config->set('Namespace.Directive', $value);
E.g.
$config->set('HTML.Allowed', 'p,b,a[href],i');
$config->set('URI.Base', 'http://www.example.com');
$config->set('URI.MakeAbsolute', true);
$config->set('AutoFormat.AutoParagraph', true);
---------------------------------------------------------------------------
5. Caching
HTML Purifier generates some cache files (generally one or two) to speed up
its execution. For maximum performance, make sure that
library/HTMLPurifier/DefinitionCache/Serializer is writeable by the webserver.
If you are in the library/ folder of HTML Purifier, you can set the
appropriate permissions using:
chmod -R 0755 HTMLPurifier/DefinitionCache/Serializer
If the above command doesn't work, you may need to assign write permissions
to group:
chmod -R 0775 HTMLPurifier/DefinitionCache/Serializer
You can also chmod files via your FTP client; this option
is usually accessible by right clicking the corresponding directory and
then selecting "chmod" or "file permissions".
Starting with 2.0.1, HTML Purifier will generate friendly error messages
that will tell you exactly what you have to chmod the directory to, if in doubt,
follow its advice.
If you are unable or unwilling to give write permissions to the cache
directory, you can either disable the cache (and suffer a performance
hit):
$config->set('Core.DefinitionCache', null);
Or move the cache directory somewhere else (no trailing slash):
$config->set('Cache.SerializerPath', '/home/user/absolute/path');
---------------------------------------------------------------------------
6. Using the code
The interface is mind-numbingly simple:
$purifier = new HTMLPurifier($config);
$clean_html = $purifier->purify( $dirty_html );
That's it! For more examples, check out docs/examples/ (they aren't very
different though). Also, docs/enduser-slow.html gives advice on what to
do if HTML Purifier is slowing down your application.
---------------------------------------------------------------------------
7. Quick install
First, make sure library/HTMLPurifier/DefinitionCache/Serializer is
writable by the webserver (see Section 5: Caching above for details).
If your website is in UTF-8 and XHTML Transitional, use this code:
purify($dirty_html);
?>
If your website is in a different encoding or doctype, use this code:
set('Core.Encoding', 'ISO-8859-1'); // replace with your encoding
$config->set('HTML.Doctype', 'HTML 4.01 Transitional'); // replace with your doctype
$purifier = new HTMLPurifier($config);
$clean_html = $purifier->purify($dirty_html);
?>
vim: et sw=4 sts=4
htmlpurifier/release1-update.php 0000644 00000005156 14716425662 0012774 0 ustar 00 1) {
echo 'More than one release declaration in NEWS replaced' . PHP_EOL;
exit;
}
file_put_contents('NEWS', $news_c);
}
// ...in Doxyfile
$doxyfile_c = preg_replace(
'/(?<=PROJECT_NUMBER {9}= )[^\s]+/m', // brittle
$version,
file_get_contents('Doxyfile'),
1, $c
);
if (!$c) {
echo 'Could not update Doxyfile, missing PROJECT_NUMBER.' . PHP_EOL;
exit;
}
file_put_contents('Doxyfile', $doxyfile_c);
// ...in HTMLPurifier.php
$htmlpurifier_c = file_get_contents('library/HTMLPurifier.php');
$htmlpurifier_c = preg_replace(
'/HTML Purifier .+? - /',
"HTML Purifier $version - ",
$htmlpurifier_c,
1, $c
);
if (!$c) {
echo 'Could not update HTMLPurifier.php, missing HTML Purifier [version] header.' . PHP_EOL;
exit;
}
$htmlpurifier_c = preg_replace(
'/public \$version = \'.+?\';/',
"public \$version = '$version';",
$htmlpurifier_c,
1, $c
);
if (!$c) {
echo 'Could not update HTMLPurifier.php, missing public $version.' . PHP_EOL;
exit;
}
$htmlpurifier_c = preg_replace(
'/const VERSION = \'.+?\';/',
"const VERSION = '$version';",
$htmlpurifier_c,
1, $c
);
if (!$c) {
echo 'Could not update HTMLPurifier.php, missing const $version.' . PHP_EOL;
exit;
}
file_put_contents('library/HTMLPurifier.php', $htmlpurifier_c);
$config_c = file_get_contents('library/HTMLPurifier/Config.php');
$config_c = preg_replace(
'/public \$version = \'.+?\';/',
"public \$version = '$version';",
$config_c,
1, $c
);
if (!$c) {
echo 'Could not update Config.php, missing public $version.' . PHP_EOL;
exit;
}
file_put_contents('library/HTMLPurifier/Config.php', $config_c);
passthru('php maintenance/flush.php');
if ($is_dev) echo "Review changes, write something in WHATSNEW and FOCUS, and then commit with log 'Release $version.'" . PHP_EOL;
else echo "Numbers updated to dev, no other modifications necessary!";
// vim: et sw=4 sts=4
htmlpurifier/NEWS 0000644 00000173475 14716425662 0010013 0 ustar 00 NEWS ( CHANGELOG and HISTORY ) HTMLPurifier
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
= KEY ====================
# Breaks back-compat
! Feature
- Bugfix
+ Sub-comment
. Internal change
==========================
4.9.3, released 2017-06-02
- Workaround PHP 7.1 infinite loop when opcode cache is enabled.
Thanks @Xiphin (#134, #135)
- Don't use autoloader when testing for DOMDocument. Hypothetically,
this could cause your install to start using DirectLex if you had
previously been monkeypatching in a custom, autoloaded implementation
of DOMDocument. Don't do that. Thanks @Izumi-kun (#130)
4.9.2, released 2017-03-12
- Fixes PHP 5.3 compatibility
- Fix breakage when decoding decimal entities. Thanks @rybakit (#129)
4.9.1, released 2017-03-08
! %URI.DefaultScheme can now be set to null, in which case
all relative paths are removed.
! New CSS properties: min-width, max-width, min-height, max-height (#94)
! Transparency (rgba) and hsl/hsla supported where color CSS is present.
Thanks @fxbt for contributing the patch. (#118)
- When idn_to_ascii is defined, we might accept malformed
hostnames. Apply validation to the result in such cases.
- Close directory when done in Serializer DefinitionCache (#100)
- Deleted some asserts to avoid linters from choking (#97)
- Rework Serializer cache behavior to avoid chmod'ing if possible (#32)
- Embedded semicolons in strings in CSS are now handled correctly!
- We accidentally dropped certain Unicode characters if there was
one or more invalid characters. This has been fixed, thanks
to mpyw
- Fix for "Don't truncate upon encountering when using DOMLex"
caused a regression with HTML 4.01 Strict parsing with libxml 2.9.1
(and maybe later versions, but known OK with libxml 2.9.4). The
fix is to go about handling truncation a bit more cleverly so that
we can wrap with divs (sidestepping the bug) but slurping out the
rest of the text in case it ran off the end. (#78)
- Fix PREG_BACKTRACK_LIMIT_ERROR in HTMLPurifier_Filter_ExtractStyle.
Thanks @breathbath for contributing the report and fix (#120)
- Fix entity decoding algorithm to be more conservative about
decoding entities that are missing trailing semicolon.
To get old behavior, set %Core.LegacyEntityDecoder to true.
(#119)
- Workaround libxml bug when HTML tags are embedded inside
script tags. To disable workaround set %Core.AggressivelyRemoveScript
to false. (#83)
# By default, when a link has a target attribute associated
with it, we now also add rel="noopener" in order to
prevent the new window from being able to overwrite
the original frame. To disable this protection,
set %HTML.TargetNoopener to FALSE.
4.9.0 was cut on Git but never properly released; when we did the
real release we decided to skip this version number.
4.8.0, released 2016-07-16
# By default, when a link has a target attribute associated
with it, we now also add rel="noreferrer" in order to
prevent the new window from being able to overwrite
the original frame. To disable this protection,
set %HTML.TargetNoreferrer to FALSE.
! Full PHP 7 compatibility, the test suite is ALL GO.
! %CSS.AllowDuplicates permits duplicate CSS properties.
! Support for 'tel' URIs.
! Partial support for 'border-radius' properties when %CSS.AllowProprietary is true.
The slash syntax, i.e., 'border-radius: 2em 1em 4em / 0.5em 3em' is not
yet supported.
! %Attr.ID.HTML5 turns on HTML5-style ID handling.
- alt truncation could result in malformed UTF-8 sequence. Don't
truncate. Thanks Brandon Farber for reporting.
- Linkify regex is smarter, based off of Gruber's regex.
- IDNA supported natively on PHP 5.3 and later.
- Non all-numeric top-level names (e.g., foo.1f, 1f) are now
allowed.
- Minor bounds error fix to squash a PHP 7 notice.
- Support non-/tmp temporary directories for data:// validation
- Give a better error message when a user attempts to allow
ul/ol without allowing li.
- On some versions of PHP, the Serializer DefinitionCache could
infinite loop when the directory exists but is not listable. (#49)
- Don't match for inside comments with
%Core.ConvertDocumentToFragment. (#67)
- SafeObject is now less case sensitive. (#57)
- AutoFormat.RemoveEmpty.Predicate now correctly renders in
web form. (#85)
4.7.0, released 2015-08-04
# opacity is now considered a "tricky" CSS property rather than a
proprietary one.
! %AutoFormat.RemoveEmpty.Predicate for specifying exactly when
an element should be considered "empty" (maybe preserve if it
has attributes), and modify iframe support so that the iframe
is removed if it is missing a src attribute. Thanks meeva for
reporting.
- Don't truncate upon encountering when using DOMLex. Thanks
Myrto Christina for finally convincing me to fix this.
- Update YouTube filter for new code.
- Fix parsing of rgb() values with spaces in them for 'border'
attribute.
- Don't remove foo="" attributes if foo is a boolean attribute. Thanks
valME for reporting.
4.6.0, released 2013-11-30
# Secure URI munge hashing algorithm has changed to hash_hmac("sha256", $url, $secret).
Please update any verification scripts you may have.
# URI parsing algorithm was made more strict, so only prefixes which
looks like schemes will actually be schemes. Thanks
Michael Gusev for fixing.
# %Core.EscapeInvalidChildren is no longer supported, and no longer does
anything.
! New directive %Core.AllowHostnameUnderscore which allows underscores
in hostnames.
- Eliminate quadratic behavior in DOMLex by using a proper queue.
Thanks Ole Laursen for noticing this.
- Rewritten MakeWellFormed/FixNesting implementation eliminates quadratic
behavior in the rest of the purificaiton pipeline. Thanks Chedburn
Networks for sponsoring this work.
- Made Linkify URL parser a bit less permissive, so that non-breaking
spaces and commas are not included as part of URL. Thanks nAS for fixing.
- Fix some bad interactions with %HTML.Allowed and injectors. Thanks
David Hirtz for reporting.
- Fix infinite loop in DirectLex. Thanks Ashar Javed (@soaj1664ashar)
for reporting.
4.5.0, released 2013-02-17
# Fix bug where stacked attribute transforms clobber each other;
this also means it's no longer possible to override attribute
transforms in later modules. No internal code was using this
but this may break some clients.
# We now use SHA-1 to identify cached definitions, instead of MD5.
! Support display:inline-block
! Support for more white-space CSS values.
! Permit underscores in font families
! Support for page-break-* CSS3 properties when proprietary properties
are enabled.
! New directive %Core.DisableExcludes; can be set to 'true' to turn off
SGML excludes checking. If HTML Purifier is removing too much text
and you don't care about full standards compliance, try setting this to
'true'.
- Use prepend for SPL autoloading on PHP 5.3 and later.
- Fix bug with nofollow transform when pre-existing rel exists.
- Fix bug where background:url() always gets lower-cased
(but not background-image:url())
- Fix bug with non lower-case color names in HTML
- Fix bug where data URI validation doesn't remove temporary files.
Thanks Javier Marín Ros for reporting.
- Don't remove certain empty tags on RemoveEmpty.
4.4.0, released 2012-01-18
# Removed PEARSax3 handler.
# URI.Munge now munges URIs inside the same host that go from https
to http. Reported by Neike Taika-Tessaro.
# Core.EscapeNonASCIICharacters now always transforms entities to
entities, even if target encoding is UTF-8.
# Tighten up selector validation in ExtractStyleBlocks.
Non-syntactically valid selectors are now rejected, along with
some of the more obscure ones such as attribute selectors, the
:lang pseudoselector, and anything not in CSS2.1. Furthermore,
ID and class selectors now work properly with the relevant
configuration attributes. Also, mute errors when parsing CSS
with CSS Tidy. Reported by Mario Heiderich and Norman Hippert.
! Added support for 'scope' attribute on tables.
! Added %HTML.TargetBlank, which adds target="blank" to all outgoing links.
! Properly handle sub-lists directly nested inside of lists in
a standards compliant way, by moving them into the preceding -
! Added %HTML.AllowedComments and %HTML.AllowedCommentsRegexp for
limited allowed comments in untrusted situations.
! Implement iframes, and allow them to be used in untrusted mode with
%HTML.SafeIframe and %URI.SafeIframeRegexp. Thanks Bradley M. Froehle
for submitting an initial version of the patch.
! The Forms module now works properly for transitional doctypes.
! Added support for internationalized domain names. You need the PEAR
Net_IDNA2 module to be in your path; if it is installed, ensure the
class can be loaded and then set %Core.EnableIDNA to true.
- Color keywords are now case insensitive. Thanks Yzmir Ramirez
for reporting.
- Explicitly initialize anonModule variable to null.
- Do not duplicate nofollow if already present. Thanks 178
for reporting.
- Do not add nofollow if hostname matches our current host. Thanks 178
for reporting, and Neike Taika-Tessaro for helping diagnose.
- Do not unset parser variable; this fixes intermittent serialization
problems. Thanks Neike Taika-Tessaro for reporting, bill
<10010tiger@gmail.com> for diagnosing.
- Fix iconv truncation bug, where non-UTF-8 target encodings see
output truncated after around 8000 characters. Thanks Jörg Ludwig
for reporting.
- Fix broken table content model for XHTML1.1 (and also earlier
versions, although the W3C validator doesn't catch those violations).
Thanks GlitchMr for reporting.
4.3.0, released 2011-03-27
# Fixed broken caching of customized raw definitions, but requires an
API change. The old API still works but will emit a warning,
see http://htmlpurifier.org/docs/enduser-customize.html#optimized
for how to upgrade your code.
# Protect against Internet Explorer innerHTML behavior by specially
treating attributes with backticks but no angled brackets, quotes or
spaces. This constitutes a slight semantic change, which can be
reverted using %Output.FixInnerHTML. Reported by Neike Taika-Tessaro
and Mario Heiderich.
# Protect against cssText/innerHTML by restricting allowed characters
used in fonts further than mandated by the specification and encoding
some extra special characters in URLs. Reported by Neike
Taika-Tessaro and Mario Heiderich.
! Added %HTML.Nofollow to add rel="nofollow" to external links.
! More types of SPL autoloaders allowed on later versions of PHP.
! Implementations for position, top, left, right, bottom, z-index
when %CSS.Trusted is on.
! Add %Cache.SerializerPermissions option for custom serializer
directory/file permissions
! Fix longstanding bug in Flash support for non-IE browsers, and
allow more wmode attributes.
! Add %CSS.AllowedFonts to restrict permissible font names.
- Switch to an iterative traversal of the DOM, which prevents us
from running out of stack space for deeply nested documents.
Thanks Maxim Krizhanovsky for contributing a patch.
- Make removal of conditional IE comments ungreedy; thanks Bernd
for reporting.
- Escape CDATA before removing Internet Explorer comments.
- Fix removal of id attributes under certain conditions by ensuring
armor attributes are preserved when recreating tags.
- Check if schema.ser was corrupted.
- Check if zend.ze1_compatibility_mode is on, and error out if it is.
This safety check is only done for HTMLPurifier.auto.php; if you
are using standalone or the specialized includes files, you're
expected to know what you're doing.
- Stop repeatedly writing the cache file after I'm done customizing a
raw definition. Reported by ajh.
- Switch to using require_once in the Bootstrap to work around bad
interaction with Zend Debugger and APC. Reported by Antonio Parraga.
- Fix URI handling when hostname is missing but scheme is present.
Reported by Neike Taika-Tessaro.
- Fix missing numeric entities on DirectLex; thanks Neike Taika-Tessaro
for reporting.
- Fix harmless notice from indexing into empty string. Thanks Matthijs
Kooijman for reporting.
- Don't autoclose no parent elements are able to support the element
that triggered the autoclose. In particular fixes strange behavior
of stray
- tags. Thanks pkuliga@gmail.com for reporting and
Neike Taika-Tessaro for debugging assistance.
4.2.0, released 2010-09-15
! Added %Core.RemoveProcessingInstructions, which lets you remove
... ?> statements.
! Added %URI.DisableResources functionality; the directive originally
did nothing. Thanks David Rothstein for reporting.
! Add documentation about configuration directive types.
! Add %CSS.ForbiddenProperties configuration directive.
! Add %HTML.FlashAllowFullScreen to permit embedded Flash objects
to utilize full-screen mode.
! Add optional support for the
file
URI scheme, enable
by explicitly setting %URI.AllowedSchemes.
! Add %Core.NormalizeNewlines options to allow turning off newline
normalization.
- Fix improper handling of Internet Explorer conditional comments
by parser. Thanks zmonteca for reporting.
- Fix missing attributes bug when running on Mac Snow Leopard and APC.
Thanks sidepodcast for the fix.
- Warn if an element is allowed, but an attribute it requires is
not allowed.
4.1.1, released 2010-05-31
- Fix undefined index warnings in maintenance scripts.
- Fix bug in DirectLex for parsing elements with a single attribute
with entities.
- Rewrite CSS output logic for font-family and url(). Thanks Mario
Heiderich for reporting and Takeshi
Terada for suggesting the fix.
- Emit an error for CollectErrors if a body is extracted
- Fix bug where in background-position for center keyword handling.
- Fix infinite loop when a wrapper element is inserted in a context
where it's not allowed. Thanks Lars for reporting.
- Remove +x bit and shebang from index.php; only supported mode is to
explicitly call it with php.
- Make test script less chatty when log_errors is on.
4.1.0, released 2010-04-26
! Support proprietary height attribute on table element
! Support YouTube slideshows that contain /cp/ in their URL.
! Support for data: URI scheme; not enabled by default, add it using
%URI.AllowedSchemes
! Support flashvars when using %HTML.SafeObject and %HTML.SafeEmbed.
! Support for Internet Explorer compatibility with %HTML.SafeObject
using %Output.FlashCompat.
! Handle properly, by inserting the necessary - tag.
- Always quote the insides of url(...) in CSS.
4.0.0, released 2009-07-07
# APIs for ConfigSchema subsystem have substantially changed. See
docs/dev-config-bcbreaks.txt for details; in essence, anything that
had both namespace and directive now have a single unified key.
# Some configuration directives were renamed, specifically:
%AutoFormatParam.PurifierLinkifyDocURL -> %AutoFormat.PurifierLinkify.DocURL
%FilterParam.ExtractStyleBlocksEscaping -> %Filter.ExtractStyleBlocks.Escaping
%FilterParam.ExtractStyleBlocksScope -> %Filter.ExtractStyleBlocks.Scope
%FilterParam.ExtractStyleBlocksTidyImpl -> %Filter.ExtractStyleBlocks.TidyImpl
As usual, the old directive names will still work, but will throw E_NOTICE
errors.
# The allowed values for class have been relaxed to allow all of CDATA for
doctypes that are not XHTML 1.1 or XHTML 2.0. For old behavior, set
%Attr.ClassUseCDATA to false.
# Instead of appending the content model to an old content model, a blank
element will replace the old content model. You can use #SUPER to get
the old content model.
! More robust support for name="" and id=""
! HTMLPurifier_Config::inherit($config) allows you to inherit one
configuration, and have changes to that configuration be propagated
to all of its children.
! Implement %HTML.Attr.Name.UseCDATA, which relaxes validation rules on
the name attribute when set. Use with care. Thanks Ian Cook for
sponsoring.
! Implement %AutoFormat.RemoveEmpty.RemoveNbsp, which removes empty
tags that contain non-breaking spaces as well other whitespace. You
can also modify which tags should have maintained with
%AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions.
! Implement %Attr.AllowedClasses, which allows administrators to restrict
classes users can use to a specified finite set of classes, and
%Attr.ForbiddenClasses, which is the logical inverse.
! You can now maintain your own configuration schema directories by
creating a config-schema.php file or passing an extra argument. Check
docs/dev-config-schema.html for more details.
! Added HTMLPurifier_Config->serialize() method, which lets you save away
your configuration in a compact serial file, which you can unserialize
and use directly without having to go through the overhead of setup.
- Fix bug where URIDefinition would not get cleared if it's directives got
changed.
- Fix fatal error in HTMLPurifier_Encoder on certain platforms (probably NetBSD 5.0)
- Fix bug in Linkify autoformatter involving http://foo
- Make %URI.Munge not apply to links that have the same host as your host.
- Prevent stray tag from truncating output, if a second
is present.
. Created script maintenance/rename-config.php for renaming a configuration
directive while maintaining its alias. This script does not change source code.
. Implement namespace locking for definition construction, to prevent
bugs where a directive is used for definition construction but is not
used to construct the cache hash.
3.3.0, released 2009-02-16
! Implement CSS property 'overflow' when %CSS.AllowTricky is true.
! Implement generic property list classess
- Fix bug with testEncodingSupportsASCII() algorithm when iconv() implementation
does not do the "right thing" with characters not supported in the output
set.
- Spellcheck UTF-8: The Secret To Character Encoding
- Fix improper removal of the contents of elements with only whitespace. Thanks
Eric Wald for reporting.
- Fix broken test suite in versions of PHP without spl_autoload_register()
- Fix degenerate case with YouTube filter involving double hyphens.
Thanks Pierre Attar for reporting.
- Fix YouTube rendering problem on certain versions of Firefox.
- Fix CSSDefinition Printer problems with decorators
- Add text parameter to unit tests, forces text output
. Add verbose mode to command line test runner, use (--verbose)
. Turn on unit tests for UnitConverter
. Fix missing version number in configuration %Attr.DefaultImageAlt (added 3.2.0)
. Fix newline errors that caused spurious failures when CRLF HTML Purifier was
tested on Linux.
. Removed trailing whitespace from all text files, see
remote-trailing-whitespace.php maintenance script.
. Convert configuration to use property list backend.
3.2.0, released 2008-10-31
# Using %Core.CollectErrors forces line number/column tracking on, whereas
previously you could theoretically turn it off.
# HTMLPurifier_Injector->notifyEnd() is formally deprecated. Please
use handleEnd() instead.
! %Output.AttrSort for when you need your attributes in alphabetical order to
deal with a bug in FCKEditor. Requested by frank farmer.
! Enable HTML comments when %HTML.Trusted is on. Requested by Waldo Jaquith.
! Proper support for name attribute. It is now allowed and equivalent to the id
attribute in a and img tags, and is only converted to id when %HTML.TidyLevel
is heavy (for all doctypes).
! %AutoFormat.RemoveEmpty to remove some empty tags from documents. Please don't
use on hand-written HTML.
! Add error-cases for unsupported elements in MakeWellFormed. This enables
the strategy to be used, standalone, on untrusted input.
! %Core.AggressivelyFixLt is on by default. This causes more sensible
processing of left angled brackets in smileys and other whatnot.
! Test scripts now have a 'type' parameter, which lets you say 'htmlpurifier',
'phpt', 'vtest', etc. in order to only execute those tests. This supercedes
the --only-phpt parameter, although for backwards-compatibility the flag
will still work.
! AutoParagraph auto-formatter will now preserve double-newlines upon output.
Users who are not performing inbound filtering, this may seem a little
useless, but as a bonus, the test suite and handling of edge cases is also
improved.
! Experimental implementation of forms for %HTML.Trusted
! Track column numbers when maintain line numbers is on
! Proprietary 'background' attribute on table-related elements converted into
corresponding CSS. Thanks Fusemail for sponsoring this feature!
! Add forward(), forwardUntilEndToken(), backward() and current() to Injector
supertype.
! HTMLPurifier_Injector->handleEnd() permits modification to end tokens. The
time of operation varies slightly from notifyEnd() as *all* end tokens are
processed by the injector before they are subject to the well-formedness rules.
! %Attr.DefaultImageAlt allows overriding default behavior of setting alt to
basename of image when not present.
! %AutoFormat.DisplayLinkURI neuters tags into plain text URLs.
- Fix two bugs in %URI.MakeAbsolute; one involving empty paths in base URLs,
the other involving an undefined $is_folder error.
- Throw error when %Core.Encoding is set to a spurious value. Previously,
this errored silently and returned false.
- Redirected stderr to stdout for flush error output.
- %URI.DisableExternal will now use the host in %URI.Base if %URI.Host is not
available.
- Do not re-munge URL if the output URL has the same host as the input URL.
Requested by Chris.
- Fix error in documentation regarding %Filter.ExtractStyleBlocks
- Prevent ]]> from triggering %Core.ConvertDocumentToFragment
- Fix bug with inline elements in blockquotes conflicting with strict doctype
- Detect if HTML support is disabled for DOM by checking for loadHTML() method.
- Fix bug where dots and double-dots in absolute URLs without hostname were
not collapsed by URIFilter_MakeAbsolute.
- Fix bug with anonymous modules operating on SafeEmbed or SafeObject elements
by reordering their addition.
- Will now throw exception on many error conditions during lexer creation; also
throw an exception when MaintainLineNumbers is true, but a non-tracksLineNumbers
is being used.
- Detect if domxml extension is loaded, and use DirectLEx accordingly.
- Improve handling of big numbers with floating point arithmetic in UnitConverter.
Reported by David Morton.
. Strategy_MakeWellFormed now operates in-place, saving memory and allowing
for more interesting filter-backtracking
. New HTMLPurifier_Injector->rewind() functionality, allows injectors to rewind
index to reprocess tokens.
. StringHashParser now allows for multiline sections with "empty" content;
previously the section would remain undefined.
. Added --quick option to multitest.php, which tests only the most recent
release for each series.
. Added --distro option to multitest.php, which accepts either 'normal' or
'standalone'. This supercedes --exclude-normal and --exclude-standalone
3.1.1, released 2008-06-19
# %URI.Munge now, by default, does not munge resources (for example, )
In order to enable this again, please set %URI.MungeResources to true.
! More robust imagecrash protection with height/width CSS with %CSS.MaxImgLength,
and height/width HTML with %HTML.MaxImgLength.
! %URI.MungeSecretKey for secure URI munging. Thanks Chris
for sponsoring this feature. Check out the corresponding documentation
for details. (Att Nightly testers: The API for this feature changed before
the general release. Namely, rename your directives %URI.SecureMungeSecretKey =>
%URI.MungeSecretKey and and %URI.SecureMunge => %URI.Munge)
! Implemented post URI filtering. Set member variable $post to true to set
a URIFilter as such.
! Allow modules to define injectors via $info_injector. Injectors are
automatically disabled if injector's needed elements are not found.
! Support for "safe" objects added, use %HTML.SafeObject and %HTML.SafeEmbed.
Thanks Chris for sponsoring. If you've been using ad hoc code from the
forums, PLEASE use this instead.
! Added substitutions for %e, %n, %a and %p in %URI.Munge (in order,
embedded, tag name, attribute name, CSS property name). See %URI.Munge
for more details. Requested by Jochem Blok.
- Disable percent height/width attributes for img.
- AttrValidator operations are now atomic; updates to attributes are not
manifest in token until end of operations. This prevents naughty internal
code from directly modifying CurrentToken when they're not supposed to.
This semantics change was requested by frank farmer.
- Percent encoding checks enabled for URI query and fragment
- Fix stray backslashes in font-family; CSS Unicode character escapes are
now properly resolved (although *only* in font-family). Thanks Takeshi Terada
for reporting.
- Improve parseCDATA algorithm to take into account newline normalization
- Account for browser confusion between Yen character and backslash in
Shift_JIS encoding. This fix generalizes to any other encoding which is not
a strict superset of printable ASCII. Thanks Takeshi Terada for reporting.
- Fix missing configuration parameter in Generator calls. Thanks vs for the
partial patch.
- Improved adherence to Unicode by checking for non-character codepoints.
Thanks Geoffrey Sneddon for reporting. This may result in degraded
performance for extremely large inputs.
- Allow CSS property-value pair ''text-decoration: none''. Thanks Jochem Blok
for reporting.
. Added HTMLPurifier_UnitConverter and HTMLPurifier_Length for convenient
handling of CSS-style lengths. HTMLPurifier_AttrDef_CSS_Length now uses
this class.
. API of HTMLPurifier_AttrDef_CSS_Length changed from __construct($disable_negative)
to __construct($min, $max). __construct(true) is equivalent to
__construct('0').
. Added HTMLPurifier_AttrDef_Switch class
. Rename HTMLPurifier_HTMLModule_Tidy->construct() to setup() and bubble method
up inheritance hierarchy to HTMLPurifier_HTMLModule. All HTMLModules
get this called with the configuration object. All modules now
use this rather than __construct(), although legacy code using constructors
will still work--the new format, however, lets modules access the
configuration object for HTML namespace dependant tweaks.
. AttrDef_HTML_Pixels now takes a single construction parameter, pixels.
. ConfigSchema data-structure heavily optimized; on average it uses a third
the memory it did previously. The interface has changed accordingly,
consult changes to HTMLPurifier_Config for details.
. Variable parsing types now are magic integers instead of strings
. Added benchmark for ConfigSchema
. HTMLPurifier_Generator requires $config and $context parameters. If you
don't know what they should be, use HTMLPurifier_Config::createDefault()
and new HTMLPurifier_Context().
. Printers now properly distinguish between output configuration, and
target configuration. This is not applicable to scripts using
the Printers for HTML Purifier related tasks.
. HTML/CSS Printers must be primed with prepareGenerator($gen_config), otherwise
fatal errors will ensue.
. URIFilter->prepare can return false in order to abort loading of the filter
. Factory for AttrDef_URI implemented, URI#embedded to indicate URI that embeds
an external resource.
. %URI.Munge functionality factored out into a post-filter class.
. Added CurrentCSSProperty context variable during CSS validation
3.1.0, released 2008-05-18
# Unnecessary references to objects (vestiges of PHP4) removed from method
signatures. The following methods do not need references when assigning from
them and will result in E_STRICT errors if you try:
+ HTMLPurifier_Config->get*Definition() [* = HTML, CSS]
+ HTMLPurifier_ConfigSchema::instance()
+ HTMLPurifier_DefinitionCacheFactory::instance()
+ HTMLPurifier_DefinitionCacheFactory->create()
+ HTMLPurifier_DoctypeRegistry->register()
+ HTMLPurifier_DoctypeRegistry->get()
+ HTMLPurifier_HTMLModule->addElement()
+ HTMLPurifier_HTMLModule->addBlankElement()
+ HTMLPurifier_LanguageFactory::instance()
# Printer_ConfigForm's get*() functions were static-ified
# %HTML.ForbiddenAttributes requires attribute declarations to be in the
form of tag@attr, NOT tag.attr (which will throw an error and won't do
anything). This is for forwards compatibility with XML; you'd do best
to migrate an %HTML.AllowedAttributes directives to this syntax too.
! Allow index to be false for config from form creation
! Added HTMLPurifier::VERSION constant
! Commas, not dashes, used for serializer IDs. This change is forwards-compatible
and allows for version numbers like "3.1.0-dev".
! %HTML.Allowed deals gracefully with whitespace anywhere, anytime!
! HTML Purifier's URI handling is a lot more robust, with much stricter
validation checks and better percent encoding handling. Thanks Gareth Heyes
for indicating security vulnerabilities from lax percent encoding.
! Bootstrap autoloader deals more robustly with classes that don't exist,
preventing class_exists($class, true) from barfing.
- InterchangeBuilder now alphabetizes its lists
- Validation error in configdoc output fixed
- Iconv and other encoding errors muted even with custom error handlers that
do not honor error_reporting
- Add protection against imagecrash attack with CSS height/width
- HTMLPurifier::instance() created for consistency, is equivalent to getInstance()
- Fixed and revamped broken ConfigForm smoketest
- Bug with bool/null fields in Printer_ConfigForm fixed
- Bug with global forbidden attributes fixed
- Improved error messages for allowed and forbidden HTML elements and attributes
- Missing (or null) in configdoc documentation restored
- If DOM throws and exception during parsing with PH5P (occurs in newer versions
of DOM), HTML Purifier punts to DirectLex
- Fatal error with unserialization of ScriptRequired
- Created directories are now chmod'ed properly
- Fixed bug with fallback languages in LanguageFactory
- Standalone testing setup properly with autoload
. Out-of-date documentation revised
. UTF-8 encoding check optimization as suggested by Diego
. HTMLPurifier_Error removed in favor of exceptions
. More copy() function removed; should use clone instead
. More extensive unit tests for HTMLDefinition
. assertPurification moved to central harness
. HTMLPurifier_Generator accepts $config and $context parameters during
instantiation, not runtime
. Double-quotes outside of attribute values are now unescaped
3.1.0rc1, released 2008-04-22
# Autoload support added. Internal require_once's removed in favor of an
explicit require list or autoloading. To use HTML Purifier,
you must now either use HTMLPurifier.auto.php
or HTMLPurifier.includes.php; setting the include path and including
HTMLPurifier.php is insufficient--in such cases include HTMLPurifier.autoload.php
as well to register our autoload handler (or modify your autoload function
to check HTMLPurifier_Bootstrap::getPath($class)). You can also use
HTMLPurifier.safe-includes.php for a less performance friendly but more
user-friendly library load.
# HTMLPurifier_ConfigSchema static functions are officially deprecated. Schema
information is stored in the ConfigSchema directory, and the
maintenance/generate-schema-cache.php generates the schema.ser file, which
is now instantiated. Support for userland schema changes coming soon!
# HTMLPurifier_Config will now throw E_USER_NOTICE when you use a directive
alias; to get rid of these errors just modify your configuration to use
the new directive name.
# HTMLPurifier->addFilter is deprecated; built-in filters can now be
enabled using %Filter.$filter_name or by setting your own filters using
%Filter.Custom
# Directive-level safety properties superceded in favor of module-level
safety. Internal method HTMLModule->addElement() has changed, although
the externally visible HTMLDefinition->addElement has *not* changed.
! Extra utility classes for testing and non-library operations can
be found in extras/. Specifically, these are FSTools and ConfigDoc.
You may find a use for these in your own project, but right now they
are highly experimental and volatile.
! Integration with PHPT allows for automated smoketests
! Limited support for proprietary HTML elements, namely