diff --git a/dev/install/install.php5 b/dev/install/install.php5 index 7ce3571ac..0b6d9b151 100644 --- a/dev/install/install.php5 +++ b/dev/install/install.php5 @@ -984,6 +984,7 @@ class Installer extends InstallRequirements { ?> + Installing SilverStripe... @@ -1352,7 +1353,8 @@ TEXT; method: 'get', url: 'InstallerTest/testrewrite', complete: function(response) { - if(response.responseText == 'OK') { + var r = response.responseText.replace(/[^A-Z]?/g,""); + if(r === "OK") { $('#ModRewriteResult').html("Friendly URLs set up successfully; I am now redirecting you to your SilverStripe site...") setTimeout(function() { window.location = "$destinationURL";