From a9b4af6bc275f1f36b3d8593fc9baf41b01dbd26 Mon Sep 17 00:00:00 2001 From: Paul Driver Date: Tue, 28 Dec 2010 09:24:54 -0600 Subject: [PATCH] fixed #12009: Export JS errors in IE7 --- docs/changelog/7.x.x.txt | 1 + lib/WebGUI/Fork/ProgressTree.pm | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/changelog/7.x.x.txt b/docs/changelog/7.x.x.txt index 2082eb15d..d52439b00 100644 --- a/docs/changelog/7.x.x.txt +++ b/docs/changelog/7.x.x.txt @@ -1,4 +1,5 @@ 7.10.7 + - fixed #12009: Export JS errors in IE7 - added #11968: use the language override in the registration form (Jukka Raimovaara / Mentalhouse Oy) - Changed Carousel to use TinyMCE with WebGUI plugins - fixed #11984: No JS allows invalid dates in Event asset diff --git a/lib/WebGUI/Fork/ProgressTree.pm b/lib/WebGUI/Fork/ProgressTree.pm index 5ad75f1fc..99349c73a 100644 --- a/lib/WebGUI/Fork/ProgressTree.pm +++ b/lib/WebGUI/Fork/ProgressTree.pm @@ -95,7 +95,7 @@ my $template = <<'TEMPLATE'; } tree = document.getElementById('tree'); tree.innerHTML = ''; - _.each(JSON.parse(data.status), function (root) { + _.each(YAHOO.lang.JSON.parse(data.status), function (root) { recurse(root, tree); }); bar.update(finished, total);