Index: admin_templates/incs/config_blocks.tpl =================================================================== --- admin_templates/incs/config_blocks.tpl (revision 13400) +++ admin_templates/incs/config_blocks.tpl (working copy) @@ -69,7 +69,7 @@ -  *: +  *: <inp2:Field name='HintLabel' as_label='1' html_escape='1'/>
[] @@ -100,7 +100,7 @@ -  *: +  *: <inp2:Field name='HintLabel' as_label='1' html_escape='1'/>
[] Index: install/install_schema.sql =================================================================== --- install/install_schema.sql (revision 13400) +++ install/install_schema.sql (working copy) @@ -57,11 +57,13 @@ DisplayOrder double NOT NULL DEFAULT '0', GroupDisplayOrder double NOT NULL DEFAULT '0', `Install` int(11) NOT NULL DEFAULT '1', + HintLabel varchar(255) DEFAULT NULL, PRIMARY KEY (VariableId), UNIQUE KEY VariableName (VariableName), KEY DisplayOrder (DisplayOrder), KEY GroupDisplayOrder (GroupDisplayOrder), - KEY `Install` (`Install`) + KEY `Install` (`Install`), + KEY HintLabel (HintLabel) ); CREATE TABLE EmailQueue ( Index: install/upgrades.sql =================================================================== --- install/upgrades.sql (revision 13400) +++ install/upgrades.sql (working copy) @@ -1794,4 +1794,8 @@ INSERT INTO Events (EventId, Event, ReplacementTags, Enabled, FrontEndOnly, FromUserId, Module, Description, Type) VALUES(DEFAULT, 'FORM.SUBMISSION.REPLY.TO.USER', NULL, 1, 0, NULL, 'Core:Category', 'Admin Reply to User Form Submission', 1); INSERT INTO Events (EventId, Event, ReplacementTags, Enabled, FrontEndOnly, FromUserId, Module, Description, Type) VALUES(DEFAULT, 'FORM.SUBMISSION.REPLY.FROM.USER', NULL, 1, 0, NULL, 'Core:Category', 'User Replied to It\'s Form Submission', 1); -INSERT INTO Events (EventId, Event, ReplacementTags, Enabled, FrontEndOnly, FromUserId, Module, Description, Type) VALUES(DEFAULT, 'FORM.SUBMISSION.REPLY.FROM.USER.BOUNCED', NULL, 1, 0, NULL, 'Core:Category', 'Form Submission Admin Reply Delivery Failure', 1); \ No newline at end of file +INSERT INTO Events (EventId, Event, ReplacementTags, Enabled, FrontEndOnly, FromUserId, Module, Description, Type) VALUES(DEFAULT, 'FORM.SUBMISSION.REPLY.FROM.USER.BOUNCED', NULL, 1, 0, NULL, 'Core:Category', 'Form Submission Admin Reply Delivery Failure', 1); + +ALTER TABLE ConfigurationValues + ADD HintLabel VARCHAR(255) NULL DEFAULT NULL, + ADD INDEX (HintLabel); \ No newline at end of file Index: units/configuration/configuration_config.php =================================================================== --- units/configuration/configuration_config.php (revision 13400) +++ units/configuration/configuration_config.php (working copy) @@ -73,6 +73,7 @@ 'DisplayOrder' => Array ('type' => 'float', 'not_null' => 1, 'default' => 0), 'GroupDisplayOrder' => Array ('type' => 'float', 'not_null' => 1, 'default' => 0), 'Install' => Array ('type' => 'int', 'not_null' => 1, 'default' => 1), + 'HintLabel' => Array ('type' => 'string', 'max_len' => 255, 'default' => NULL), ), 'VirtualFields' => Array (