Bug #1621

in core.js > createProjectSave > xmlhttp.onreadystatechange should return if xmlhttp.responseXML==null

Added by Giulio Moro about 8 years ago. Updated about 8 years ago.

Status:ResolvedStart date:2016-02-22
Priority:NormalDue date:
Assignee:-% Done:

0%

Category:-
Target version:-

Description

When you get to these lines, I think the function should return after "createProjectSave('null');", otherwise you will be throwing an exception at the next line "var response = xmlhttp.responseXML.childNodes0;" because xmlhttp.responseXML == null

                if (xmlhttp.responseXML == null)
                {
                    createProjectSave('null');
                }
                var response = xmlhttp.responseXML.childNodes[0];

History

#1 Updated by Nicholas Jillings about 8 years ago

  • Status changed from New to Resolved

I've merged in your changes here.

Also available in: Atom PDF