From: Gina Monti Date: Tue, 29 Nov 2022 15:20:11 +0000 (-0500) Subject: LP1987910: Correcting typo in opac.located_uri.act_as_copy X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=9c10bce3f3b031f98a24c28f6777a310766247ca;p=evergreen%2Fmasslnc.git LP1987910: Correcting typo in opac.located_uri.act_as_copy Includes revisions by Scott Angel. Signed-off-by: Gina Monti Signed-off-by: Scott Angel Signed-off-by: Mary Llewellyn Signed-off-by: Galen Charlton --- 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 aa2c2432ab..35b2765639 100644 --- a/Open-ILS/src/sql/Pg/950.data.seed-values.sql +++ b/Open-ILS/src/sql/Pg/950.data.seed-values.sql @@ -12640,7 +12640,7 @@ VALUES ( FALSE, oils_i18n_gettext( 'opac.located_uri.act_as_copy', - 'When enabled, Located URIs will provide visiblity behavior identical to copies.', + 'When enabled, Located URIs will provide visibility behavior identical to copies.', 'cgf', 'label' ) diff --git a/Open-ILS/src/sql/Pg/upgrade/xxxx.data.typo-global-flag-opac-located-uri-act-as-copy.sql b/Open-ILS/src/sql/Pg/upgrade/xxxx.data.typo-global-flag-opac-located-uri-act-as-copy.sql new file mode 100644 index 0000000000..f385ab4f98 --- /dev/null +++ b/Open-ILS/src/sql/Pg/upgrade/xxxx.data.typo-global-flag-opac-located-uri-act-as-copy.sql @@ -0,0 +1,11 @@ +BEGIN; + +SELECT evergreen.upgrade_deps_block_check('xxxx', :eg_version); + +UPDATE config.global_flag +SET label = 'When enabled, Located URIs will provide visibility behavior identical to copies.' +WHERE name = 'opac.located_uri.act_as_copy' + AND label = + 'When enabled, Located URIs will provide visiblity behavior identical to copies.'; + +COMMIT; \ No newline at end of file