Bug #1621
in core.js > createProjectSave > xmlhttp.onreadystatechange should return if xmlhttp.responseXML==null
Status: | Resolved | Start date: | 2016-02-22 | |
---|---|---|---|---|
Priority: | Normal | Due 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 almost 9 years ago
- Status changed from New to Resolved
I've merged in your changes here.