summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/node/content_types.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/node/content_types.inc b/modules/node/content_types.inc
index ab4b2e608..11ecc2c38 100644
--- a/modules/node/content_types.inc
+++ b/modules/node/content_types.inc
@@ -69,7 +69,7 @@ function theme_node_admin_overview($variables) {
$type = $variables['type'];
$output = check_plain($name);
- $output .= ' <small> (Machine name: ' . check_plain($type->type) . ')</small>';
+ $output .= ' <small>' . t('(Machine name: @type)', array('@type' => $type->type)) . '</small>';
$output .= '<div class="description">' . filter_xss_admin($type->description) . '</div>';
return $output;
}