From be07c8ca3fedcd2a5be6abec95caf1b687114adb Mon Sep 17 00:00:00 2001 From: sminnee Date: Wed, 13 Oct 2010 02:13:54 +0000 Subject: [PATCH] MINOR Fixed grammar mistake in install (from r92304) git-svn-id: svn://svn.silverstripe.com/silverstripe/open/phpinstaller/trunk@112080 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.php b/install.php index 3e2b7a6..68b86ba 100644 --- a/install.php +++ b/install.php @@ -150,7 +150,7 @@ class InstallRequirements { function checkdatabase($databaseConfig) { if($this->requireFunction('mysql_connect', array("PHP Configuration", "MySQL support", "MySQL support not included in PHP."))) { $this->requireMySQLServer($databaseConfig['server'], array("MySQL Configuration", "Does the server exist", - "Can't find the a MySQL server on '$databaseConfig[server]'", $databaseConfig['server'])); + "I couldn't find a MySQL server on '$databaseConfig[server]'", $databaseConfig['server'])); if($this->requireMysqlConnection($databaseConfig['server'], $databaseConfig['username'], $databaseConfig['password'], array("MySQL Configuration", "Are the access credentials correct", "That username/password doesn't work"))) { @$this->requireMySQLVersion("4.1", array("MySQL Configuration", "MySQL version at least 4.1", "MySQL version 4.1 is required, you only have ", "MySQL " . mysql_get_server_info()));