Index: branches/RC/core/install/install_data.sql =================================================================== diff -u -N -r9979 -r9980 --- branches/RC/core/install/install_data.sql (.../install_data.sql) (revision 9979) +++ branches/RC/core/install/install_data.sql (.../install_data.sql) (revision 9980) @@ -601,3 +601,19 @@ INSERT INTO Modules VALUES ('Core', 'core/', 'adm', DEFAULT, 1, 1, '', 0, '0'); +INSERT INTO ConfigurationAdmin VALUES ('UseColumnFreezer', 'la_Text_Website', 'la_config_UseColumnFreezer', 'checkbox', '', '', 10.22, 0, 0); +INSERT INTO ConfigurationValues VALUES (DEFAULT, 'UseColumnFreezer', '0', 'In-Portal', 'in-portal:configure_general'); + +INSERT INTO ConfigurationAdmin VALUES ('TrimRequiredFields', 'la_Text_Website', 'la_config_TrimRequiredFields', 'checkbox', '', '', 10.23, 0, 0); +INSERT INTO ConfigurationValues VALUES (DEFAULT, 'TrimRequiredFields', '0', 'In-Portal', 'in-portal:configure_general'); + +INSERT INTO ConfigurationAdmin VALUES ('MenuFrameWidth', 'la_title_General', 'la_prompt_MenuFrameWidth', 'text', NULL, NULL, '11', '0', '0'); +INSERT INTO ConfigurationValues VALUES (DEFAULT, 'MenuFrameWidth', 200, 'Proj-Base', 'in-portal:configure_general'); + +INSERT INTO ConfigurationAdmin VALUES ('DefaultSettingsUserId', 'la_title_General', 'la_prompt_DefaultUserId', 'text', NULL, NULL, '12', '0', '0'); +INSERT INTO ConfigurationValues VALUES (DEFAULT, 'DefaultSettingsUserId', -1, 'Proj-Base', 'in-portal:configure_general'); + +UPDATE ConfigurationValues SET ModuleOwner = 'Proj-Base', Section = 'proj-base:sysconfig' WHERE VariableName IN ('UseColumnFreezer'); +UPDATE ConfigurationValues SET ModuleOwner = 'Proj-Base', Section = 'proj-base:sysconfig' WHERE VariableName IN ('TrimRequiredFields'); +UPDATE ConfigurationValues SET ModuleOwner = 'Proj-Base', Section = 'proj-base:sysconfig' WHERE VariableName IN ('MenuFrameWidth'); +UPDATE ConfigurationValues SET ModuleOwner = 'Proj-Base', Section = 'proj-base:sysconfig' WHERE VariableName IN ('DefaultSettingsUserId'); \ No newline at end of file