]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
fixed missing semisolon
authorBrenda Wallace <shiny@cpan.org>
Sun, 13 Sep 2009 05:59:42 +0000 (17:59 +1200)
committerBrenda Wallace <shiny@cpan.org>
Mon, 14 Sep 2009 07:05:32 +0000 (19:05 +1200)
install.php

index 6f8bff91ec961577e865f605668c7abab747df13..64c8fd9b14f6a0540499f19286bd65c5127552dc 100644 (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()