diff options
Diffstat (limited to 'modules/system')
-rw-r--r-- | modules/system/system.install | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/system/system.install b/modules/system/system.install index b9a3ae2ef..c7ef22fd3 100644 --- a/modules/system/system.install +++ b/modules/system/system.install @@ -1568,7 +1568,7 @@ function system_update_6051() { if (!db_column_exists('users', 'signature_format')) { - // Set future input formats to FILTER_FORMAT_DEFAULT to ensure a safe default + // Set future text formats to FILTER_FORMAT_DEFAULT to ensure a safe default // when incompatible modules insert into the users table. An actual format // will be assigned when users save their signature. @@ -1582,7 +1582,7 @@ function system_update_6051() { db_add_field($ret, 'users', 'signature_format', $schema); - // Set the format of existing signatures to the current default input format. + // Set the format of existing signatures to the current default text format. if ($current_default_filter = variable_get('filter_default_format', 0)) { db_update('users') ->fields(array( @@ -1591,7 +1591,7 @@ function system_update_6051() { ->execute(); } - drupal_set_message("User signatures no longer inherit comment input formats. Each user's signature now has its own associated format that can be selected on the user's account page. Existing signatures have been set to your site's default input format."); + drupal_set_message("User signatures no longer inherit comment text formats. Each user's signature now has its own associated format that can be selected on the user's account page. Existing signatures have been set to your site's default text format."); } return $ret; |