- Patch #59038 by nedjo: drupal.js parseJson() should allow valid [ first character

5.x
Dries Buytaert 2006-06-07 09:34:11 +00:00
parent b0ba5ef4f5
commit 7bacdb4353
1 changed files with 1 additions and 1 deletions

View File

@ -316,7 +316,7 @@ function stopEvent(event) {
* The result is either the JSON object, or an object with 'status' 0 and 'data' an error message.
*/
function parseJson(data) {
if (data.substring(0,1) != '{') {
if ((data.substring(0, 1) != '{') && (data.substring(0, 1) != '[')) {
return { status: 0, data: data.length ? data : 'Unspecified error' };
}
return eval('(' + data + ');');