fixed missing semisolon

This commit is contained in:
Brenda Wallace 2009-09-13 17:59:42 +12:00
parent 20764dc08b
commit 367ed28efa
1 changed files with 2 additions and 4 deletions

View File

@ -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()