summaryrefslogtreecommitdiff
path: root/modules/system
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2010-10-06 13:38:40 +0000
committerDries Buytaert <dries@buytaert.net>2010-10-06 13:38:40 +0000
commitfb8025056c39148dc784d529374e3e48ebebb454 (patch)
tree3573d5155e371139efe153bf8ef397fa6994ec07 /modules/system
parent1680103636c556503187f980f1b5dd4a66a72853 (diff)
downloadbrdo-fb8025056c39148dc784d529374e3e48ebebb454.tar.gz
brdo-fb8025056c39148dc784d529374e3e48ebebb454.tar.bz2
- Patch #932098 by sun: various bogus theme variables.
Diffstat (limited to 'modules/system')
-rw-r--r--modules/system/system.admin.inc2
-rw-r--r--modules/system/system.install5
2 files changed, 2 insertions, 5 deletions
diff --git a/modules/system/system.admin.inc b/modules/system/system.admin.inc
index 2ce39b653..2af689a6e 100644
--- a/modules/system/system.admin.inc
+++ b/modules/system/system.admin.inc
@@ -2902,7 +2902,7 @@ function system_actions_manage() {
}
if ($row) {
- $pager = theme('pager', array('tags' => NULL));
+ $pager = theme('pager');
if (!empty($pager)) {
$row[] = array(array('data' => $pager, 'colspan' => '3'));
}
diff --git a/modules/system/system.install b/modules/system/system.install
index 087b130b0..4e6703148 100644
--- a/modules/system/system.install
+++ b/modules/system/system.install
@@ -128,10 +128,7 @@ function system_requirements($phase) {
'@system_requirements' => 'http://drupal.org/requirements',
));
- $description .= theme('item_list', array(
- 'type' => 'ul',
- 'items' => $missing_extensions,
- ));
+ $description .= theme('item_list', array('items' => $missing_extensions));
$requirements['php_extensions']['value'] = $t('Disabled');
$requirements['php_extensions']['severity'] = REQUIREMENT_ERROR;