From b4224a4c559e58b7a250b215d78d398d41885da3 Mon Sep 17 00:00:00 2001 From: miker Date: Tue, 13 May 2008 02:41:36 +0000 Subject: [PATCH] store actual nulls instead of stringified "null" git-svn-id: svn://svn.open-ils.org/ILS/trunk@9568 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- Open-ILS/web/js/dojo/fieldmapper/hash.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Open-ILS/web/js/dojo/fieldmapper/hash.js b/Open-ILS/web/js/dojo/fieldmapper/hash.js index 6f82e57534..e401a42a6f 100644 --- a/Open-ILS/web/js/dojo/fieldmapper/hash.js +++ b/Open-ILS/web/js/dojo/fieldmapper/hash.js @@ -32,8 +32,11 @@ if(!dojo._hasResource['fieldmapper.hash']){ function _toHash (includeNulls) { var _hash = {}; for ( var i=0; i < this._fields.length; i++) { - if (includeNulls || this[this._fields[i]]() != null) - _hash[this._fields[i]] = '' + this[this._fields[i]](); + if (includeNulls || this[this._fields[i]]() != null) { + if (this[this._fields[i]]() == null) + _hash[this._fields[i]] = null; + else + _hash[this._fields[i]] = '' + this[this._fields[i]](); } return _hash; } -- 2.43.2