summaryrefslogtreecommitdiff
path: root/modules/update/update.report.inc
diff options
context:
space:
mode:
Diffstat (limited to 'modules/update/update.report.inc')
-rw-r--r--modules/update/update.report.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/update/update.report.inc b/modules/update/update.report.inc
index 6a9d60d1b..592844053 100644
--- a/modules/update/update.report.inc
+++ b/modules/update/update.report.inc
@@ -168,7 +168,7 @@ function theme_update_report($variables) {
foreach ($project['extra'] as $key => $value) {
$row .= '<div class="' . implode(' ', $value['class']) . '">';
$row .= check_plain($value['label']) . ': ';
- $row .= drupal_placeholder(array('text' => $value['data']));
+ $row .= drupal_placeholder($value['data']);
$row .= "</div>\n";
}
$row .= "</div>\n"; // extra div.
@@ -203,7 +203,7 @@ function theme_update_report($variables) {
break;
default:
- $base_themes[] = drupal_placeholder(array('text' => $base_theme));
+ $base_themes[] = drupal_placeholder($base_theme);
}
}
$row .= t('Depends on: !basethemes', array('!basethemes' => implode(', ', $base_themes)));