From aba77548a1a9b9f407c68360ee55b6f4098ea59a Mon Sep 17 00:00:00 2001 From: webchick Date: Fri, 31 Aug 2012 17:15:22 -0700 Subject: [PATCH] Issue #1730760 by sun: Fixed theme_task_list() does not use installer-compatible get_t(). --- core/includes/theme.maintenance.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/includes/theme.maintenance.inc b/core/includes/theme.maintenance.inc index 12de2a773a8..4b3e80ceac4 100644 --- a/core/includes/theme.maintenance.inc +++ b/core/includes/theme.maintenance.inc @@ -122,7 +122,7 @@ function theme_task_list($variables) { } else { $class = $done ? 'done' : ''; - $status = $done ? '(' . t('done') . ')' : ''; + $status = $done ? '(' . $t('done') . ')' : ''; } $output .= '';