summaryrefslogtreecommitdiff
path: root/install.php
diff options
context:
space:
mode:
authorZach Copley <zach@controlyourself.ca>2009-09-15 16:46:18 -0700
committerZach Copley <zach@controlyourself.ca>2009-09-15 16:46:18 -0700
commite29046b3a121db6aa95f94d4114467d0e747c6a7 (patch)
tree1992f1d8fba7eacb77f90c870eaf1c28d66c389b /install.php
parent94466da35afcb0b1680a478964b58fbc7970f4ec (diff)
Fixed broken list items in installer output
Diffstat (limited to 'install.php')
-rw-r--r--install.php6
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>";
}