diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-10-06 13:38:40 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-10-06 13:38:40 +0000 |
commit | fb8025056c39148dc784d529374e3e48ebebb454 (patch) | |
tree | 3573d5155e371139efe153bf8ef397fa6994ec07 /modules/system/system.install | |
parent | 1680103636c556503187f980f1b5dd4a66a72853 (diff) | |
download | brdo-fb8025056c39148dc784d529374e3e48ebebb454.tar.gz brdo-fb8025056c39148dc784d529374e3e48ebebb454.tar.bz2 |
- Patch #932098 by sun: various bogus theme variables.
Diffstat (limited to 'modules/system/system.install')
-rw-r--r-- | modules/system/system.install | 5 |
1 files changed, 1 insertions, 4 deletions
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; |