]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Fixed broken list items in installer output
authorZach Copley <zach@controlyourself.ca>
Tue, 15 Sep 2009 23:46:18 +0000 (16:46 -0700)
committerZach Copley <zach@controlyourself.ca>
Tue, 15 Sep 2009 23:46:18 +0000 (16:46 -0700)
install.php

index a8f1ef4e24dd2b39435cd59e9831338246014f23..54ae0cd5e11ab9bdd7698f5457a11d87872e154f 100644 (file)
@@ -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>";
 }