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>
'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'
),
--- /dev/null
+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;
+