Menu

#9 Error in class_xml_check.php

open
nobody
None
5
2006-04-27
2006-04-27
No

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

Discussion


Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.