diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-10-03 00:14:57 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-10-03 00:14:57 +0000 |
commit | c4be0967e96a5c7e9ec16e563a5078be97ea3f27 (patch) | |
tree | 5d519304f4bec543418ffc6d7425ebe3da904da4 | |
parent | 413d51ebc5a6772ce33ff373297bb15d9028897c (diff) | |
download | brdo-c4be0967e96a5c7e9ec16e563a5078be97ea3f27.tar.gz brdo-c4be0967e96a5c7e9ec16e563a5078be97ea3f27.tar.bz2 |
- Patch #896494 by Jeff Burnz: #dashboard doesn't wrap around .dashboard-region's.
-rw-r--r-- | modules/dashboard/dashboard.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/dashboard/dashboard.module b/modules/dashboard/dashboard.module index 62d372219..48dfb7abd 100644 --- a/modules/dashboard/dashboard.module +++ b/modules/dashboard/dashboard.module @@ -547,7 +547,7 @@ function dashboard_update() { function theme_dashboard($variables) { extract($variables); drupal_add_css(drupal_get_path('module', 'dashboard') . '/dashboard.css'); - return '<div id="dashboard">' . $element['#children'] . '</div>'; + return '<div id="dashboard" class="clearfix">' . $element['#children'] . '</div>'; } /** |