[open-ils-commits] r9567 - in branches/acq-experiment: . Open-ILS/web/js/dojo/fieldmapper

svn at svn.open-ils.org svn at svn.open-ils.org
Mon May 12 22:24:29 EDT 2008


Author: erickson
Date: 2008-05-12 22:24:27 -0400 (Mon, 12 May 2008)
New Revision: 9567

Modified:
   branches/acq-experiment/
   branches/acq-experiment/Open-ILS/web/js/dojo/fieldmapper/dojoData.js
Log:
Merged revisions 9566 via svnmerge from 
svn://svn.open-ils.org/ILS/trunk

........
  r9566 | miker | 2008-05-12 22:23:55 -0400 (Mon, 12 May 2008) | 1 line
  
  tell toStoreData to allow nulls in hashes
........



Property changes on: branches/acq-experiment
___________________________________________________________________
Name: svnmerge-integrated
   - /trunk:1-9564
   + /trunk:1-9566

Modified: branches/acq-experiment/Open-ILS/web/js/dojo/fieldmapper/dojoData.js
===================================================================
--- branches/acq-experiment/Open-ILS/web/js/dojo/fieldmapper/dojoData.js	2008-05-13 02:23:55 UTC (rev 9566)
+++ branches/acq-experiment/Open-ILS/web/js/dojo/fieldmapper/dojoData.js	2008-05-13 02:24:27 UTC (rev 9567)
@@ -48,7 +48,7 @@
 
 		var data = { label : label, identifier : params.identifier, items : [] };
 
-		for (var i in list) data.items.push( list[i].toHash() );
+		for (var i in list) data.items.push( list[i].toHash(true) );
 
 		if (params.children && params.parent) {
 			var _hash_list = data.items;



More information about the open-ils-commits mailing list