diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-07-07 05:59:14 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-07-07 05:59:14 +0000 |
commit | a8812bb727a08296a2029fcb055767bc4b783fb0 (patch) | |
tree | 89834b15e41aea1dcb715823c918f982a08f0f80 /modules/system/system.install | |
parent | 449f1f7cbd5399b1ad092378d1fcf80e91507cb0 (diff) | |
download | brdo-a8812bb727a08296a2029fcb055767bc4b783fb0.tar.gz brdo-a8812bb727a08296a2029fcb055767bc4b783fb0.tar.bz2 |
#685892 follow-up by Stevel: Fix missing t() in update function.
Diffstat (limited to 'modules/system/system.install')
-rw-r--r-- | modules/system/system.install | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.install b/modules/system/system.install index 1f3c2b0f0..a4a1eb0b1 100644 --- a/modules/system/system.install +++ b/modules/system/system.install @@ -2593,7 +2593,7 @@ function system_update_7059(&$sandbox) { $results = db_query('SELECT DISTINCT type FROM {node} n INNER JOIN {upload} u ON n.vid = u.vid'); foreach ($results as $row) { if (!isset($context['types'][$row->type])) { - drupal_set_message('The content type <em>' . $row->type . '</em> had uploads disabled but contained uploaded file data. Uploads have been re-enabled to migrate the existing data. You may delete the "File attachments" field in the <em>' . $row->type . '</em> type if this data is not necessary.'); + drupal_set_message(t('The content type %rowtype had uploads disabled but contained uploaded file data. Uploads have been re-enabled to migrate the existing data. You may delete the "File attachments" field in the %rowtype type if this data is not necessary.', array('%rowtype' => $row->type))); $context['types'][$row->type] = $row->type; } } |