error in XML_check class
Status: Beta
Brought to you by:
lrargerich
Code:
--- cut here ---
function _init() {
$this->error_code = '';
$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;
}
--- cut here ---
should be replaced with:
--- cut here ---
function _init() {
$this->error_code = '';
$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;
}
--- cut here ---