summaryrefslogtreecommitdiff
path: root/modules/help/help.module
diff options
context:
space:
mode:
authorNeil Drumm <drumm@3064.no-reply.drupal.org>2006-08-25 09:01:12 +0000
committerNeil Drumm <drumm@3064.no-reply.drupal.org>2006-08-25 09:01:12 +0000
commit554a2808a3f337c5a3d578e9b53e6009f1491da6 (patch)
tree06f55647128bac3e52c28390232d53569a959f2d /modules/help/help.module
parent6ea9204889915f098fa713ce8a8449bbe667b91b (diff)
downloadbrdo-554a2808a3f337c5a3d578e9b53e6009f1491da6.tar.gz
brdo-554a2808a3f337c5a3d578e9b53e6009f1491da6.tar.bz2
#78656 by m3avrck. Drupal Core's first CSS hack.
Diffstat (limited to 'modules/help/help.module')
-rw-r--r--modules/help/help.module4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/help/help.module b/modules/help/help.module
index c4ae90256..8f6edcbc5 100644
--- a/modules/help/help.module
+++ b/modules/help/help.module
@@ -80,14 +80,14 @@ function help_links_as_list() {
// Output pretty four-column list
$break = ceil(count($modules) / 4);
- $output = '<div class="help-items"><ul>';
+ $output = '<div class="help-items clear-block"><ul>';
foreach ($modules as $i => $module) {
$output .= '<li>'. l(t($module), 'admin/help/'. $module) .'</li>';
if (($i + 1) % $break == 0) {
$output .= '</ul></div><div class="help-items'. ($i + 1 == $break * 3 ? ' help-items-last' : '') .'"><ul>';
}
}
- $output .= '</ul></div><br class="clear" />';
+ $output .= '</ul></div>';
return $output;
}