diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-04-22 09:54:26 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-04-22 09:54:26 +0000 |
commit | 49938048ec9c9a83f9ac73bd651c525a0d64c737 (patch) | |
tree | 0f42c1b108d29b4101512992aa38dbb77fbbb467 | |
parent | a0f1bffdace3e74ee568b41ee21250f9b74443b2 (diff) | |
download | brdo-49938048ec9c9a83f9ac73bd651c525a0d64c737.tar.gz brdo-49938048ec9c9a83f9ac73bd651c525a0d64c737.tar.bz2 |
#778360 by cwgordon7: Fixed theme_system_admin_by_module() does not have proper comment formatting.
-rw-r--r-- | modules/system/system.admin.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/system/system.admin.inc b/modules/system/system.admin.inc index aff0429b3..82d316660 100644 --- a/modules/system/system.admin.inc +++ b/modules/system/system.admin.inc @@ -2414,11 +2414,11 @@ function theme_system_admin_by_module($variables) { $flip = array('left' => 'right', 'right' => 'left'); $position = 'left'; - // Iterate over all modules + // Iterate over all modules. foreach ($menu_items as $module => $block) { list($description, $items) = $block; - // Output links + // Output links. if (count($items)) { $block = array(); $block['title'] = $module; |