Updated the label on the desk renewal global setting.
authorSteven Callender <stevecallender@esilibrary.com>
Thu, 12 Dec 2013 20:13:57 +0000 (15:13 -0500)
committerBen Shum <bshum@biblio.org>
Tue, 17 Dec 2013 19:56:14 +0000 (14:56 -0500)
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 <stevecallender@esilibrary.com>
Signed-off-by: Ben Shum <bshum@biblio.org>

Open-ILS/src/sql/Pg/950.data.seed-values.sql
Open-ILS/src/sql/Pg/upgrade/xxxx.schema.desk_renewal_desc_update [new file with mode: 0644]

index d482914..770443e 100644 (file)
@@ -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 (file)
index 0000000..0432b9e
--- /dev/null
@@ -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;
+