From: erickson <erickson@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Date: Tue, 24 Nov 2009 17:50:27 +0000 (+0000)
Subject: fixed bug in load() arguments in IDL class auto-vivicate process
X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=16c40a641263a12b39805753c8352de1aea62d97;p=contrib%2FConifer.git

fixed bug in load() arguments in IDL class auto-vivicate process

git-svn-id: svn://svn.open-ils.org/ILS/trunk@15020 dcc99617-32d9-48b4-a31d-7c20da2025e4
---

diff --git a/Open-ILS/web/js/dojo/fieldmapper/IDL.js b/Open-ILS/web/js/dojo/fieldmapper/IDL.js
index ae80b741e6..e37973483d 100644
--- a/Open-ILS/web/js/dojo/fieldmapper/IDL.js
+++ b/Open-ILS/web/js/dojo/fieldmapper/IDL.js
@@ -26,7 +26,7 @@ if(!dojo._hasResource["fieldmapper.IDL"]) {
                     }
 
                     JSON2js.fallbackObjectifier = function (arg, key_name, val_name) {
-                        fieldmapper.IDL.load([key_name]);
+                        fieldmapper.IDL.load([arg[key_name]]);
                         return decodeJS(arg);
                     }