diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-04-23 05:48:13 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-04-23 05:48:13 +0000 |
commit | 57fe6927a05c565ac5e2b61dcf9fe82da6614872 (patch) | |
tree | 5ec922fd9de0b091cc75bc80b0d9adab84610cb4 /modules/system/system.admin.inc | |
parent | 6e82d23e9717a55417fe53a478aff2d80698d2f0 (diff) | |
download | brdo-57fe6927a05c565ac5e2b61dcf9fe82da6614872.tar.gz brdo-57fe6927a05c565ac5e2b61dcf9fe82da6614872.tar.bz2 |
#779390 by solotandem: Fixed esoteric invalid syntax bugs in core found by Grammar Parser module.
Diffstat (limited to 'modules/system/system.admin.inc')
-rw-r--r-- | modules/system/system.admin.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.admin.inc b/modules/system/system.admin.inc index 82d316660..aa70243e0 100644 --- a/modules/system/system.admin.inc +++ b/modules/system/system.admin.inc @@ -312,7 +312,7 @@ function system_themes_page() { ); if (!empty($theme_groups['disabled'])) { $theme_group_titles['disabled'] = format_plural(count($theme_groups['disabled']), 'Disabled theme', 'Disabled themes'); - }; + } uasort($theme_groups['enabled'], 'system_sort_themes'); drupal_alter('system_themes_page', $theme_groups); |