diff --git a/e107_handlers/e_parse_class.php b/e107_handlers/e_parse_class.php
index a7a66d9ad..1459d2f05 100644
--- a/e107_handlers/e_parse_class.php
+++ b/e107_handlers/e_parse_class.php
@@ -2403,18 +2403,18 @@ class e_parser extends e_parse
echo "
Standard v2 Parser
";
echo "\$tp->dataFilter()
";
- // echo $tp->dataFilter($html); // Remove Comment for a real mess!
+ // echo $this->dataFilter($html); // Remove Comment for a real mess!
$sql->db_Mark_Time('Start Parser Test');
print_a($this->dataFilter($html));
$sql->db_Mark_Time('tp->dataFilter');
echo "\$tp->toHtml()
";
- // echo $tp->dataFilter($html); // Remove Comment for a real mess!
+ // echo $this->dataFilter($html); // Remove Comment for a real mess!
print_a($this->tohtml($html));
$sql->db_Mark_Time('tp->toHtml');
echo "\$tp->toDB()
";
- // echo $tp->dataFilter($html); // Remove Comment for a real mess!
+ // echo $this->dataFilter($html); // Remove Comment for a real mess!
print_a($this->toDB($html));
$sql->db_Mark_Time('tp->toDB');
@@ -2447,7 +2447,7 @@ class e_parser extends e_parse
{
if(!vartrue($html)){ return; }
- $html = 'html 5 test'.$html.''; // Set it up for processing.
+ $html = 'html 5 test'.$html.''; // Set it up for processing.
$doc = $this->domObj;
$doc->loadHTML($html);
@@ -2487,7 +2487,7 @@ class e_parser extends e_parse
$this->removedList['attributes'][] = $name;
}
- if(inValidAttributeVal($value))
+ if($this->inValidAttributeVal($value))
{
$node->setAttribute($name, '#---sanitized---#');
}