Index: branches/5.2.x/units/topics/topics_config.php =================================================================== diff -u -N -r15350 -r15467 --- branches/5.2.x/units/topics/topics_config.php (.../topics_config.php) (revision 15350) +++ branches/5.2.x/units/topics/topics_config.php (.../topics_config.php) (revision 15467) @@ -1,6 +1,6 @@ 'core:settings_general', 'label' => 'la_tab_GeneralSettings', 'url' => Array ('t' => 'config/config_general', 'pass_section' => true, 'pass' => 'm'), - 'permissions' => Array ('view', 'edit'), + 'permissions' => Array ('view', 'add', 'edit'), 'priority' => 2.9, 'type' => stTREE, ),*/ @@ -216,7 +216,7 @@ 'icon' => 'core:conf_output', 'label' => 'la_tab_ConfigOutput', 'url' => Array ('t' => 'config/config_general', 'pass_section' => true, 'pass' => 'm'), - 'permissions' => Array ('view', 'edit'), + 'permissions' => Array ('view', 'add', 'edit'), 'priority' => 3, 'type' => stTREE, ), Index: branches/5.2.x/install/install_data.sql =================================================================== diff -u -N -r15286 -r15467 --- branches/5.2.x/install/install_data.sql (.../install_data.sql) (revision 15286) +++ branches/5.2.x/install/install_data.sql (.../install_data.sql) (revision 15467) @@ -202,6 +202,7 @@ INSERT INTO Permissions VALUES (DEFAULT, 'in-bulletin:topics.view', 11, 1, 1, 0); INSERT INTO Permissions VALUES (DEFAULT, 'in-bulletin:setting_folder.view', 11, 1, 1, 0); INSERT INTO Permissions VALUES (DEFAULT, 'in-bulletin:configuration_output.view', 11, 1, 1, 0); +INSERT INTO Permissions VALUES (DEFAULT, 'in-bulletin:configuration_output.add', 11, 1, 1, 0); INSERT INTO Permissions VALUES (DEFAULT, 'in-bulletin:configuration_output.edit', 11, 1, 1, 0); INSERT INTO Permissions VALUES (DEFAULT, 'in-bulletin:configuration_search.view', 11, 1, 1, 0); INSERT INTO Permissions VALUES (DEFAULT, 'in-bulletin:configuration_search.edit', 11, 1, 1, 0); Index: branches/5.2.x/install/upgrades.php =================================================================== diff -u -N -r15377 -r15467 --- branches/5.2.x/install/upgrades.php (.../upgrades.php) (revision 15377) +++ branches/5.2.x/install/upgrades.php (.../upgrades.php) (revision 15467) @@ -1,6 +1,6 @@ Array ('Core' => '5.2.0-B2'), '5.2.0-B3' => Array ('Core' => '5.2.0-B3'), '5.2.0-RC1' => Array ('Core' => '5.2.0-RC1'), + '5.2.0' => Array ('Core' => '5.2.0'), ); } Index: branches/5.2.x/install/upgrades.sql =================================================================== diff -u -N -r15377 -r15467 --- branches/5.2.x/install/upgrades.sql (.../upgrades.sql) (revision 15377) +++ branches/5.2.x/install/upgrades.sql (.../upgrades.sql) (revision 15467) @@ -261,3 +261,6 @@ INSERT INTO EmailEvents (EventId, Event, ReplacementTags, Enabled, FrontEndOnly, Module, Description, Type, AllowChangingSender, AllowChangingRecipient, BindToSystemEvent) VALUES(DEFAULT, 'TOPIC.ADD.SUB', NULL, 1, 0, 'In-Bulletin', 'Topic Added (for subscribers)', 0, 1, 0, 'bb:OnCreate'); # ===== v 5.2.0-RC1 ===== + +# ===== v 5.2.0 ===== +INSERT INTO Permissions VALUES(DEFAULT, 'in-bulletin:configuration_output.add', 11, 1, 1, 0);