From 7853a5faa9d2e5c1d392f04c2dbb85d0f358345f Mon Sep 17 00:00:00 2001 From: Steven Callender Date: Thu, 12 Dec 2013 15:13:57 -0500 Subject: [PATCH] Updated the label on the desk renewal global setting. Updated the label on the desk renewal global flag circ.desk_renewal.use_original_circ_lib to properly explain the it's the workstation library that will not be used rather than the user home library. The OPAC renewal uses the users home library and desk renewals use the workstation library. Signed-off-by: Steven Callender Signed-off-by: Ben Shum --- Open-ILS/src/sql/Pg/950.data.seed-values.sql | 2 +- .../src/sql/Pg/upgrade/xxxx.schema.desk_renewal_desc_update | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 Open-ILS/src/sql/Pg/upgrade/xxxx.schema.desk_renewal_desc_update diff --git a/Open-ILS/src/sql/Pg/950.data.seed-values.sql b/Open-ILS/src/sql/Pg/950.data.seed-values.sql index d482914e06..770443eb24 100644 --- a/Open-ILS/src/sql/Pg/950.data.seed-values.sql +++ b/Open-ILS/src/sql/Pg/950.data.seed-values.sql @@ -9292,7 +9292,7 @@ INSERT INTO config.global_flag (name, label, enabled) 'circ.desk_renewal.use_original_circ_lib', oils_i18n_gettext( 'circ.desk_renewal.use_original_circ_lib', - 'Circ: Use original circulation library on desk renewal instead of user home library', + 'Circ: Use original circulation library on desk renewal instead of the workstation library', 'cgf', 'label' ), diff --git a/Open-ILS/src/sql/Pg/upgrade/xxxx.schema.desk_renewal_desc_update b/Open-ILS/src/sql/Pg/upgrade/xxxx.schema.desk_renewal_desc_update new file mode 100644 index 0000000000..0432b9e4af --- /dev/null +++ b/Open-ILS/src/sql/Pg/upgrade/xxxx.schema.desk_renewal_desc_update @@ -0,0 +1,10 @@ +BEGIN; + +INSERT INTO config.upgrade_log (version) VALUES ('xxxx'); + +UPDATE config.global_flag + SET label = 'Circ: Use original circulation library on desk renewal instead of the workstation library' + WHERE name = 'circ.desk_renewal.use_original_circ_lib'; + +COMMIT; + -- 2.11.0