Error under php-5.0.5
Status: Beta
Brought to you by:
lrargerich
After upgrading to php-5.0.5 I started getting the
following error.
PHP Fatal error: Cannot access empty property in
/usr/local/lib/php/class_xml_check.php on line 99
This can be solved by changing..
$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;
to
$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;
Logged In: YES
user_id=644951
Apologies, this is already logged as Request ID 1466925.
That will teach me to log a bug before I've checked the
existing ones properly!