From 7920d760358dd0201a7ca2234710f68a602775f4 Mon Sep 17 00:00:00 2001 From: Bill Erickson Date: Mon, 2 Apr 2012 17:15:25 -0400 Subject: [PATCH] Add ui.hide_copy_editor_fields to baseline seed data Without it, the "Hide Fields" option in the copy editor will not function. Signed-off-by: Bill Erickson Signed-off-by: Jason Etheridge --- Open-ILS/src/sql/Pg/950.data.seed-values.sql | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) 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 2d3c8ec59b..39d90b7026 100644 --- a/Open-ILS/src/sql/Pg/950.data.seed-values.sql +++ b/Open-ILS/src/sql/Pg/950.data.seed-values.sql @@ -11553,3 +11553,26 @@ INSERT INTO config.global_flag (name, enabled, label) 'label' ) ); + +INSERT INTO config.org_unit_setting_type ( name, label, description, datatype, grp ) + VALUES ( + 'ui.hide_copy_editor_fields', + oils_i18n_gettext( + 'ui.hide_copy_editor_fields', + 'GUI: Hide these fields within the Item Attribute Editor', + 'coust', + 'label' + ), + oils_i18n_gettext( + 'ui.hide_copy_editor_fields', + 'This setting may be best maintained with the dedicated configuration' + || ' interface within the Item Attribute Editor. However, here it' + || ' shows up as comma separated list of field identifiers to hide.', + 'coust', + 'description' + ), + 'array', + 'gui' + ); + + -- 2.11.0