MINOR Removed unncessary isset() check (from r108561)

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/phpinstaller/trunk@112407 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
sminnee 2010-10-15 01:17:34 +00:00
parent 7b040c42ac
commit 2a78807f4b

View File

@ -1238,7 +1238,7 @@ HTML;
* The output differs depending on whether this is CLI or web based
*/
function statusMessage($msg) {
if(isset($_SERVER['HTTP_HOST'])) echo "<li>$msg</li>\n";
echo "<li>$msg</li>\n";
else echo "$msg\n";
flush();
}