Index: branches/RC/core/install/upgrades.sql =================================================================== diff -u -r9071 -r9237 --- branches/RC/core/install/upgrades.sql (.../upgrades.sql) (revision 9071) +++ branches/RC/core/install/upgrades.sql (.../upgrades.sql) (revision 9237) @@ -120,4 +120,8 @@ ALTER TABLE PortalUser CHANGE FirstName FirstName VARCHAR(255) NOT NULL DEFAULT '', - CHANGE LastName LastName VARCHAR(255) NOT NULL DEFAULT ''; \ No newline at end of file + CHANGE LastName LastName VARCHAR(255) NOT NULL DEFAULT ''; + +# ===== v 4.2.1 ===== +INSERT INTO ConfigurationAdmin VALUES ('UseSmallHeader', 'la_Text_Website', 'la_config_UseSmallHeader', 'checkbox', '', '', 10.21, 0, 0); +INSERT INTO ConfigurationValues VALUES (DEFAULT, 'UseSmallHeader', '0', 'In-Portal', 'in-portal:configure_general'); \ No newline at end of file Index: branches/RC/core/install/install_data.sql =================================================================== diff -u -r9060 -r9237 --- branches/RC/core/install/install_data.sql (.../install_data.sql) (revision 9060) +++ branches/RC/core/install/install_data.sql (.../install_data.sql) (revision 9237) @@ -65,6 +65,7 @@ INSERT INTO ConfigurationAdmin VALUES ('OutputCompressionLevel', 'la_Text_Website', 'la_config_OutputCompressionLevel', 'text', '', '', 10.19, 0, 1); INSERT INTO ConfigurationAdmin VALUES ('MailFunctionHeaderSeparator', 'la_Text_smtp_server', 'la_config_MailFunctionHeaderSeparator', 'radio', NULL, '1=la_Linux,2=la_Windows', 30.08, 0, 0); INSERT INTO ConfigurationAdmin VALUES ('UseToolbarLabels', 'la_Text_Website', 'la_config_UseToolbarLabels', 'checkbox', NULL , NULL , 10.20, 0, 0); +INSERT INTO ConfigurationAdmin VALUES ('UseSmallHeader', 'la_Text_Website', 'la_config_UseSmallHeader', 'checkbox', '', '', 10.21, 0, 0); INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Columns_Category', '2', 'In-Portal', 'Categories'); INSERT INTO ConfigurationValues VALUES (DEFAULT, 'DomainSelect','1','In-Portal','in-portal:configure_general'); @@ -203,6 +204,7 @@ INSERT INTO ConfigurationValues VALUES (DEFAULT, 'MailFunctionHeaderSeparator', 1, 'In-Portal', 'in-portal:configure_general'); INSERT INTO ConfigurationValues VALUES (DEFAULT, 'CategoriesRebuildSerial', '0', 'In-Portal', ''); INSERT INTO ConfigurationValues VALUES (DEFAULT, 'UseToolbarLabels', '1', 'In-Portal', 'in-portal:configure_general'); +INSERT INTO ConfigurationValues VALUES (DEFAULT, 'UseSmallHeader', '0', 'In-Portal', 'in-portal:configure_general'); INSERT INTO Events VALUES (DEFAULT, 'USER.ADD', NULL, 1, 0, 'In-Portal:Users', 'la_event_user.add', 0); INSERT INTO Events VALUES (DEFAULT, 'USER.ADD', NULL, 2, 0, 'In-Portal:Users', 'la_event_user.add', 1); Index: branches/RC/admin/install/inportal_data.sql =================================================================== diff -u -r9044 -r9237 --- branches/RC/admin/install/inportal_data.sql (.../inportal_data.sql) (revision 9044) +++ branches/RC/admin/install/inportal_data.sql (.../inportal_data.sql) (revision 9237) @@ -228,4 +228,4 @@ INSERT INTO Stylesheets VALUES (8, 'Default', 'In-Portal Default Theme', '', 1124952555, 1); -INSERT INTO Modules VALUES ('In-Portal', 'kernel/', 'm', '4.2.0', 1, 0, '', 0, '1054738405'); +INSERT INTO Modules VALUES ('In-Portal', 'kernel/', 'm', '4.2.1', 1, 0, '', 0, '1054738405'); Index: branches/RC/admin/install/upgrades/inportal_upgrade_v4.2.1.sql =================================================================== diff -u --- branches/RC/admin/install/upgrades/inportal_upgrade_v4.2.1.sql (revision 0) +++ branches/RC/admin/install/upgrades/inportal_upgrade_v4.2.1.sql (revision 9237) @@ -0,0 +1,5 @@ +INSERT INTO ConfigurationAdmin VALUES ('UseSmallHeader', 'la_Text_Website', 'la_config_UseSmallHeader', 'checkbox', '', '', 10.21, 0, 0); +INSERT INTO ConfigurationValues VALUES (DEFAULT, 'UseSmallHeader', '0', 'In-Portal', 'in-portal:configure_general'); + +UPDATE Modules SET Version = '4.2.1' WHERE Name = 'Core'; +UPDATE Modules SET Version = '4.2.1' WHERE Name = 'In-Portal'; \ No newline at end of file