MINOR Removed unncessary isset() check

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/phpinstaller/branches/2.4@108561 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
sharvey 2010-07-27 04:33:55 +00:00 committed by Sam Minnee
parent 2878aae297
commit e5ce99f4ad

View File

@ -1213,7 +1213,7 @@ HTML;
* Show an installation status message. * Show an installation status message.
*/ */
function statusMessage($msg) { function statusMessage($msg) {
if(isset($_SERVER['HTTP_HOST'])) echo "<li>$msg</li>\n"; echo "<li>$msg</li>\n";
flush(); flush();
} }
} }