summaryrefslogtreecommitdiff
path: root/install.php
diff options
context:
space:
mode:
Diffstat (limited to 'install.php')
-rw-r--r--install.php6
1 files changed, 2 insertions, 4 deletions
diff --git a/install.php b/install.php
index 6f8bff91e..64c8fd9b1 100644
--- a/install.php
+++ b/install.php
@@ -444,10 +444,8 @@ E_O_T;
function updateStatus($status, $error=false)
{
-?>
- <li <?php echo ($error) ? 'class="error"': ''; ?>><?php echo $status;?></li>
-
-<?php
+ echo '<li ' . ($error) ? 'class="error"': '';
+ echo ">$status</li>";
}
function handlePost()