mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-05 07:03:24 +01:00
- FIX NPE loading old maps ...
This commit is contained in:
parent
042ea9ae6e
commit
36c34b6962
@ -372,7 +372,16 @@ mindplot.persistence.XMLSerializer_Pela = new Class({
|
|||||||
value = child.nodeValue;
|
value = child.nodeValue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
// Notes must be decoded ...
|
||||||
|
value = unescape(value);
|
||||||
|
|
||||||
|
// Hack for empty nodes ...
|
||||||
|
if (value == "") {
|
||||||
|
value = " ";
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return value;
|
return value;
|
||||||
},
|
},
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user