From 1bc76fe5bd041d4a56538261f47f429fd85b4a2b Mon Sep 17 00:00:00 2001 From: Denis Flaven Date: Thu, 27 May 2010 15:08:50 +0000 Subject: [PATCH] Fixed a typo in an error message (Tack #125). SVN:trunk[423] --- setup/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/index.php b/setup/index.php index 2c66c5f4c..88082764d 100644 --- a/setup/index.php +++ b/setup/index.php @@ -221,7 +221,7 @@ function CheckPHPVersion(SetupWebPage $oP) // Check some more ini settings here, needed for file upload if (get_magic_quotes_gpc()) { - $oP->error("'magic_quotes_gpc' is set to On in '$sPhpIniFile', please turn if Off before continuing."); + $oP->error("'magic_quotes_gpc' is set to On in '$sPhpIniFile', please turn it Off before continuing."); $bResult = false; }