From b2067032c87e4bb12fbd6d07c80c15de87ddda6a Mon Sep 17 00:00:00 2001 From: phasefx Date: Tue, 15 Aug 2006 13:35:24 +0000 Subject: [PATCH] use ' ' instead of '???' git-svn-id: svn://svn.open-ils.org/ILS/trunk@5511 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- Open-ILS/xul/staff_client/server/circ/util.js | 6 +++--- Open-ILS/xul/staff_client/server/patron/util.js | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Open-ILS/xul/staff_client/server/circ/util.js b/Open-ILS/xul/staff_client/server/circ/util.js index fd142f9796..fa7f61eb65 100644 --- a/Open-ILS/xul/staff_client/server/circ/util.js +++ b/Open-ILS/xul/staff_client/server/circ/util.js @@ -597,7 +597,7 @@ circ.util.hold_columns = function(modify,params) { }, { 'persist' : 'hidden width ordinal', 'id' : 'capture_time', 'label' : getString('staff.ahr_capture_time_label'), 'flex' : 1, - 'primary' : false, 'hidden' : true, 'render' : 'my.ahr.capture_time() ? my.ahr.capture_time().toString().substr(0,10) : "???"' + 'primary' : false, 'hidden' : true, 'render' : 'my.ahr.capture_time() ? my.ahr.capture_time().toString().substr(0,10) : ""' }, { 'persist' : 'hidden width ordinal', 'id' : 'status', 'label' : getString('staff.ahr_status_label'), 'flex' : 1, @@ -749,7 +749,7 @@ circ.util.std_map_row_to_column = function(error_value) { value = eval( col.render ); } catch(E) { obj.error.sdump('D_WARN','map_row_to_column: ' + E); - if (error_value) value = error_value; else value = '???'; + if (error_value) value = error_value; else value = ' '; } return value; } @@ -798,7 +798,7 @@ circ.util.checkin_via_barcode = function(session,barcode,backdate,auto_print) { if (check.payload && check.payload.record) check.record = check.payload.record; if (check.payload && check.payload.circ) check.circ = check.payload.circ; - if (!check.route_to) check.route_to = '???'; + if (!check.route_to) check.route_to = ' '; /* SUCCESS / NO_CHANGE / ITEM_NOT_CATALOGED */ if (check.ilsevent == 0 || check.ilsevent == 3 || check.ilsevent == 1202) { diff --git a/Open-ILS/xul/staff_client/server/patron/util.js b/Open-ILS/xul/staff_client/server/patron/util.js index a988059e0e..1cbadbb528 100644 --- a/Open-ILS/xul/staff_client/server/patron/util.js +++ b/Open-ILS/xul/staff_client/server/patron/util.js @@ -378,7 +378,7 @@ patron.util.std_map_row_to_column = function(error_value) { value = eval( col.render ); } catch(E) { obj.error.sdump('D_WARN','map_row_to_column: ' + E); - if (error_value) { value = error_value; } else { value = '???' }; + if (error_value) { value = error_value; } else { value = ' ' }; } return value; } -- 2.11.0