diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-05-15 23:08:44 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-05-15 23:08:44 +0000 |
commit | 758e7c0db6f3c774f9670c2cf79a14b335c906ce (patch) | |
tree | 0002ce49a6a83a0484a31628ac6223caf2031909 /views | |
parent | e76ebabb5bb5a6b5224c03baad5bdc510c288dfe (diff) | |
download | elgg-758e7c0db6f3c774f9670c2cf79a14b335c906ce.tar.gz elgg-758e7c0db6f3c774f9670c2cf79a14b335c906ce.tar.bz2 |
fixed display issue in installation where navigation was overlapping requirements
git-svn-id: http://code.elgg.org/elgg/trunk@9094 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views')
-rw-r--r-- | views/installation/install/pages/requirements.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/views/installation/install/pages/requirements.php b/views/installation/install/pages/requirements.php index b6516840f..e3689e761 100644 --- a/views/installation/install/pages/requirements.php +++ b/views/installation/install/pages/requirements.php @@ -20,7 +20,7 @@ $report = $vars['report']; foreach ($report as $category => $checks) { $title = elgg_echo("install:require:$category"); echo "<h3>$title</h3>"; - echo "<ul>"; + echo "<ul class=\"elgg-require-$category\">"; foreach ($checks as $check) { echo "<li class=\"{$check['severity']}\">"; echo autop($check['message']); |