diff options
author | Brenda Wallace <shiny@cpan.org> | 2009-09-13 17:59:42 +1200 |
---|---|---|
committer | Brenda Wallace <shiny@cpan.org> | 2009-09-14 19:05:32 +1200 |
commit | 367ed28efadf9b2a4b1e8e90349107f0de1fa44f (patch) | |
tree | 4b2a46197f9fbf0fbe81b14a768547b980bcd7fa /install.php | |
parent | 20764dc08b0231e4be07c4e181c8603b005c20b5 (diff) |
fixed missing semisolon
Diffstat (limited to 'install.php')
-rw-r--r-- | install.php | 6 |
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() |