diff options
author | Zach Copley <zach@controlyourself.ca> | 2009-09-15 16:46:18 -0700 |
---|---|---|
committer | Zach Copley <zach@controlyourself.ca> | 2009-09-15 16:46:18 -0700 |
commit | e29046b3a121db6aa95f94d4114467d0e747c6a7 (patch) | |
tree | 1992f1d8fba7eacb77f90c870eaf1c28d66c389b /install.php | |
parent | 94466da35afcb0b1680a478964b58fbc7970f4ec (diff) |
Fixed broken list items in installer output
Diffstat (limited to 'install.php')
-rw-r--r-- | install.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/install.php b/install.php index a8f1ef4e2..54ae0cd5e 100644 --- a/install.php +++ b/install.php @@ -477,7 +477,11 @@ E_O_T; function updateStatus($status, $error=false) { - echo '<li ' . ($error) ? 'class="error"': ''; + echo '<li'; + + if ($error) { + echo ' class="error"'; + } echo ">$status</li>"; } |