diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-01-09 23:15:26 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-01-09 23:15:26 +0000 |
commit | d067e447a6819178ff2b0488aae2c08d95dad808 (patch) | |
tree | 68fd738ac7d8920e8402d2a14879efc5ec94fd8a /modules/system/system.install | |
parent | fa2b71967b3434b68a67236b9c1b50b823477e99 (diff) | |
download | brdo-d067e447a6819178ff2b0488aae2c08d95dad808.tar.gz brdo-d067e447a6819178ff2b0488aae2c08d95dad808.tar.bz2 |
#679894 by Bojhan: Fix remaining instances of Input format => Text format.
Diffstat (limited to 'modules/system/system.install')
-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; |