[open-ils-commits] r12267 - branches/rel_1_4_0/Open-ILS/xul/staff_client/server/cat (dbs)

svn at svn.open-ils.org svn at svn.open-ils.org
Sun Feb 22 16:26:09 EST 2009


Author: dbs
Date: 2009-02-22 16:26:05 -0500 (Sun, 22 Feb 2009)
New Revision: 12267

Modified:
   branches/rel_1_4_0/Open-ILS/xul/staff_client/server/cat/marcedit.js
Log:
Backport r12265 from trunk to fix fixed fields editor. Closes #41

Modified: branches/rel_1_4_0/Open-ILS/xul/staff_client/server/cat/marcedit.js
===================================================================
--- branches/rel_1_4_0/Open-ILS/xul/staff_client/server/cat/marcedit.js	2009-02-22 21:25:36 UTC (rev 12266)
+++ branches/rel_1_4_0/Open-ILS/xul/staff_client/server/cat/marcedit.js	2009-02-22 21:26:05 UTC (rev 12267)
@@ -9,6 +9,7 @@
 
 var tooltip_hash = {};
 var current_focus;
+var _record;
 var _record_type;
 var bib_data;
 
@@ -1320,7 +1321,7 @@
 
 function loadRecord(rec) {
 	try {
-			var _record = rec;
+			_record = rec;
 			var grid_rows = document.getElementById('recGrid').lastChild;
 
 			while (grid_rows.firstChild) grid_rows.removeChild(grid_rows.firstChild);



More information about the open-ils-commits mailing list