From 2a78807f4bc504a9ca9b82c6f2e70e9bb5f5250e Mon Sep 17 00:00:00 2001 From: sminnee Date: Fri, 15 Oct 2010 01:17:34 +0000 Subject: [PATCH] MINOR Removed unncessary isset() check (from r108561) git-svn-id: svn://svn.silverstripe.com/silverstripe/open/phpinstaller/trunk@112407 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.php b/install.php index a47f5c7..de81c1a 100644 --- a/install.php +++ b/install.php @@ -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 "
  • $msg
  • \n"; + echo "
  • $msg
  • \n"; else echo "$msg\n"; flush(); }