Bei mir noch nicht
Fehlermeldung* Loading module: import* –----------------------------------------------* i-doit import* –----------------------------------------------* Import-Handler initialized (2009-06-04 16:10:24)* Setting up system environment* Loading Import: imports/srvidoit-1065426.xmlParse error: parse error, expecting `T_FUNCTION' in C:\XAMPP\xampp\htdocs\idoit\src\classes\components\isys_component_xml.class.php on line 162Uploaded:
Die Datei src/classes/components/isys_component_xml.class.php sieht wie folgt aus:
/**
* @return integer
* @desc Returns the last error code of the XML Parser
*/
public function get_error_code()
{
if($this->m_res_parser) {
return xml_get_error_code($this->m_res_parser);
}
}
/**
* @return string
* @desc Returns the error string of the XML Parser
*/
public function get_error()
{
if($this->m_res_parser) {
return xml_error_string($this->get_error_code());
}
}
{
parent::__construct($this);
$this->m_res_parser = ISYS_NULL;
$this->m_res_parser = xml_parser_create();
}
/**
* @return void
* @desc Destructor
*/
public function __destruct()
{
if($this->m_res_parser) {
xml_parser_free($this->m_res_parser);
}
}
/**
* Return "simple_xml" parsed file
*
* @param string $p_file
* @return (object)SimpleXMLElement
*/
public function simple_xml_parse($p_file) {
$l_sxml = simplexml_load_file($p_file);
return $l_sxml;
}
?>
#######
Die weiteren Ersetzungen habe ich ebenfalls durchgeführt.
Es kommt weiterhin der o.g. Fehler
Thomas