Index: install/install_data.sql =================================================================== --- install/install_data.sql (revision 12650) +++ install/install_data.sql (working copy) @@ -6,7 +6,7 @@ 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', 'custom/', 'custom-sections', DEFAULT, 1, 10, '', 0, NULL); +INSERT INTO Modules VALUES ('Custom', 'custom/', 'custom-sections', DEFAULT, 1, 10, 'custom/', 0, NULL); # ===== SQLs above this line already on LIVE ================================================================================================ Index: install/upgrades.sql =================================================================== --- install/upgrades.sql (revision 12650) +++ install/upgrades.sql (working copy) @@ -1,4 +1,7 @@ # ===== v 1.0.0 ===== # ===== v 1.0.1 ===== -UPDATE Modules SET LoadOrder = 10 WHERE `Name` = 'Custom'; \ No newline at end of file +UPDATE Modules SET LoadOrder = 10 WHERE `Name` = 'Custom'; + +# ===== v 1.0.2 ===== +UPDATE Modules SET TemplatePath = 'custom/' WHERE Name = 'Custom';