Warning: Call-time pass-by-reference has been deprecated - argument passed by value; If you would like to pass it by reference, modify the declaration of xml_set_object(). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file. However, future versions may not support this any longer. in /home/webcindario/nefertiter/xml_mailer/XmlMailer.class.php on line 119
el codigo en cuestion es el siguiente
Código PHP:
function xml_mailer($archivo)
{
$this->input_data = $archivo;
$this->contacto = '';
$this->en_contacto = false;
$this->xml_parser = xml_parser_create();
xml_set_object( $this->xml_parser , &$this );
xml_set_element_handler( $this->xml_parser , "abrir" , "cerrar" );
xml_set_character_data_handler( $this->xml_parser , "leer" );
}
alguien sabe como solucionarlo??