From: Steven Callender Date: Thu, 12 Dec 2013 20:13:57 +0000 (-0500) Subject: Updated the label on the desk renewal global setting. X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=7853a5faa9d2e5c1d392f04c2dbb85d0f358345f;p=evergreen%2Fequinox.git 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 --- 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; +