Index: branches/5.3.x/install/install_data.sql =================================================================== --- branches/5.3.x/install/install_data.sql +++ branches/5.3.x/install/install_data.sql @@ -147,6 +147,8 @@ INSERT INTO SearchConfig VALUES ('Topic', 'PostedBy', 0, 1, 'lu_fielddesc_topic_postedby', 'lc_field_postedby', 'In-Bulletin', 'la_text_topic', 20, DEFAULT, 0, 'text', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO SearchConfig VALUES ('Topic', 'OrgId', 0, 1, 'lu_fielddesc_topic_orgid', 'lc_field_orgid', 'In-Bulletin', 'la_text_topic', 21, DEFAULT, 0, 'text', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO SearchConfig VALUES ('Topic', 'LastPostId', 0, 1, 'lu_fielddesc_topic_lastpostid', 'lc_field_lastpostid', 'In-Bulletin', 'la_text_topic', 22, DEFAULT, 0, 'text', NULL, NULL, NULL, NULL, NULL, NULL, NULL); +INSERT INTO SearchConfig VALUES ('Topic', 'MetaKeywords', 0, 1, '', 'lc_field_MetaKeywords', 'In-Bulletin', 'la_text_topic', 23, DEFAULT, 0, 'text', NULL, NULL, NULL, NULL, NULL, NULL, NULL); +INSERT INTO SearchConfig VALUES ('Topic', 'MetaDescription', 0, 1, '', 'lc_field_MetaDescription', 'In-Bulletin', 'la_text_topic', 24, DEFAULT, 0, 'text', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO Permissions VALUES (DEFAULT, 'TOPIC.VIEW', 14, 1, 0, {TopicCatId}); INSERT INTO Permissions VALUES (DEFAULT, 'TOPIC.REPLY.VIEW', 14, 1, 0, {TopicCatId}); Index: branches/5.3.x/install/upgrades.sql =================================================================== --- branches/5.3.x/install/upgrades.sql +++ branches/5.3.x/install/upgrades.sql @@ -280,3 +280,6 @@ UPDATE Modules SET ClassNamespace = 'InPortal\\Modules\\InBulletin' WHERE `Name` = 'In-Bulletin'; + +INSERT INTO SearchConfig VALUES ('Topic', 'MetaKeywords', 0, 1, '', 'lc_field_MetaKeywords', 'In-Bulletin', 'la_text_topic', 23, DEFAULT, 0, 'text', NULL, NULL, NULL, NULL, NULL, NULL, NULL); +INSERT INTO SearchConfig VALUES ('Topic', 'MetaDescription', 0, 1, '', 'lc_field_MetaDescription', 'In-Bulletin', 'la_text_topic', 24, DEFAULT, 0, 'text', NULL, NULL, NULL, NULL, NULL, NULL, NULL);