From e5ce99f4ad9137ed5b14bcb49e85b210e3e38198 Mon Sep 17 00:00:00 2001 From: sharvey Date: Tue, 27 Jul 2010 04:33:55 +0000 Subject: [PATCH] MINOR Removed unncessary isset() check git-svn-id: svn://svn.silverstripe.com/silverstripe/open/phpinstaller/branches/2.4@108561 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.php b/install.php index 8acc21a..4170a19 100644 --- a/install.php +++ b/install.php @@ -1213,7 +1213,7 @@ HTML; * Show an installation status message. */ function statusMessage($msg) { - if(isset($_SERVER['HTTP_HOST'])) echo "
  • $msg
  • \n"; + echo "
  • $msg
  • \n"; flush(); } }