Index: branches/1.3.x/install/install_data.sql =================================================================== diff -u -N -r15950 -r16214 --- branches/1.3.x/install/install_data.sql (.../install_data.sql) (revision 15950) +++ branches/1.3.x/install/install_data.sql (.../install_data.sql) (revision 16214) @@ -4,4 +4,4 @@ INSERT INTO Permissions VALUES(DEFAULT, 'custom:widgets.add', 11, 1, 1, 0); INSERT INTO Permissions VALUES(DEFAULT, 'custom:widgets.view', 11, 1, 1, 0); -INSERT INTO Modules VALUES ('Custom', 'modules/custom/', 'Intechnic\\InPortal\\Modules\\Custom', 'custom-sections', DEFAULT, 1, 10, 'custom/', 0, NULL); +INSERT INTO Modules VALUES ('Custom', 'modules/custom/', 'InPortal\\Modules\\Custom', 'custom-sections', DEFAULT, 1, 10, 'custom/', 0, NULL); Index: branches/1.3.x/install/upgrades.sql =================================================================== diff -u -N -r16103 -r16214 --- branches/1.3.x/install/upgrades.sql (.../upgrades.sql) (revision 16103) +++ branches/1.3.x/install/upgrades.sql (.../upgrades.sql) (revision 16214) @@ -70,3 +70,8 @@ # ===== v 1.2.1-RC1 ===== # ===== v 1.2.1 ===== + +# ===== v 1.3.0-B1 ===== +UPDATE Modules +SET ClassNamespace = 'InPortal\\Modules\\Custom' +WHERE `Name` = 'Custom';