From 2699b55aff8e64a41c62c9f6ee420d219253fded Mon Sep 17 00:00:00 2001 From: aoneil Date: Wed, 25 Jun 2008 05:44:20 +0000 Subject: [PATCH] MINOR: #2316 - Installer incorrectly shows "GD2 support" as the failure message for "GD2 support" (DanielVF) git-svn-id: svn://svn.silverstripe.com/silverstripe/open/phpinstaller/trunk@56943 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- install.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/install.php b/install.php index 3112202..fb81813 100644 --- a/install.php +++ b/install.php @@ -173,7 +173,7 @@ class InstallRequirements { // Check for GD support if(!$this->requireFunction("imagecreatetruecolor", array("PHP Configuration", "GD2 support", "PHP must have GD version 2."))) { - $this->requireFunction("imagecreate", array("PHP Configuration", "GD2 support", "GD2 support", "GD support for PHP not included.")); + $this->requireFunction("imagecreate", array("PHP Configuration", "GD2 support", "GD support for PHP not included.")); } // Check for XML support @@ -698,8 +698,8 @@ PHP $adminmember->Surname = $_REQUEST['admin']['surname']; $adminmember->write(); } - - // Syncing filesystem (so /assets/Uploads is available instantly, see ticket #2266) + + // Syncing filesystem (so /assets/Uploads is available instantly, see ticket #2266) FileSystem::sync(); echo "
  • Checking mod_rewrite works
  • ";