Error in class_xml_check.php
Status: Beta
Brought to you by:
lrargerich
Fatal error: Cannot access empty property in
C:\Programme\XAMPP\xampp\htdocs\Projekte\class_xml_check\class_xml_check.php
on line 99
Fix:
Search (line 99):
$this->$error_line = '';
$this->$error_col = '';
$this->$error_msg = '';
$this->$size = 0;
$this->$elements = 0;
$this->$attributes = 0;
$this->$texts = 0;
$this->$text_size = 0;
Replace:
$this->error_line = '';
$this->error_col = '';
$this->error_msg = '';
$this->size = 0;
$this->elements = 0;
$this->attributes = 0;
$this->texts = 0;
$this->text_size = 0;
Worked perfectly for me
PS: I used
class_xml_check v1.0