Index: branches/5.2.x/install/install_data.sql =================================================================== diff -u -N -r15604 -r15743 --- branches/5.2.x/install/install_data.sql (.../install_data.sql) (revision 15604) +++ branches/5.2.x/install/install_data.sql (.../install_data.sql) (revision 15743) @@ -226,4 +226,4 @@ INSERT INTO CustomFields VALUES (DEFAULT, 1, 'bb_ItemTemplate', 'la_fld_cust_bb_ItemTemplate', 0, 'la_title_SystemCF', 'la_fld_cust_bb_ItemTemplate', 'text', NULL, '', 0, 0, 1, 0); -INSERT INTO Modules VALUES ('In-Bulletin', 'modules/in-bulletin/', 'bb', DEFAULT, 1, 3, 'in-bulletin/', {TopicCatId}, NULL, NULL); +INSERT INTO Modules VALUES ('In-Bulletin', 'modules/in-bulletin/', 'Intechnic\\InPortal\\Modules\\InBulletin', 'bb', DEFAULT, 1, 3, 'in-bulletin/', {TopicCatId}, NULL, NULL); Index: branches/5.2.x/install/upgrades.php =================================================================== diff -u -N -r15610 -r15743 --- branches/5.2.x/install/upgrades.php (.../upgrades.php) (revision 15610) +++ branches/5.2.x/install/upgrades.php (.../upgrades.php) (revision 15743) @@ -1,6 +1,6 @@ Array ('Core' => '5.2.0-RC1'), '5.2.0' => Array ('Core' => '5.2.0'), '5.2.1-B1' => Array ('Core' => '5.2.1-B1'), + '5.2.1-B2' => Array ('Core' => '5.2.1-B2'), ); } Index: branches/5.2.x/install/upgrades.sql =================================================================== diff -u -N -r15610 -r15743 --- branches/5.2.x/install/upgrades.sql (.../upgrades.sql) (revision 15610) +++ branches/5.2.x/install/upgrades.sql (.../upgrades.sql) (revision 15743) @@ -266,3 +266,8 @@ INSERT INTO Permissions VALUES(DEFAULT, 'in-bulletin:configuration_output.add', 11, 1, 1, 0); # ===== v 5.2.1-B1 ===== + +# ===== v 5.2.1-B2 ===== +UPDATE Modules +SET ClassNamespace = 'Intechnic\\InPortal\\Modules\\InBulletin' +WHERE `Name` = 'In-Bulletin';