diff --git a/assets/Uploads/SilverStripeLogo.png b/assets/Uploads/SilverStripeLogo.png
index 29a02e2..1a3432d 100644
Binary files a/assets/Uploads/SilverStripeLogo.png and b/assets/Uploads/SilverStripeLogo.png differ
diff --git a/composer.json b/composer.json
index 995a04f..6437716 100644
--- a/composer.json
+++ b/composer.json
@@ -3,14 +3,14 @@
"description": "The SilverStripe Framework Installer",
"require": {
"php": ">=5.2.4",
- "silverstripe/cms": "2.5.*",
- "silverstripe/framework": "2.5.*",
+ "silverstripe/cms": "self.version",
+ "silverstripe/framework": "self.version",
"silverstripe-themes/blackcandy": "2.4.*"
},
"minimum-stability": "dev",
"extra": {
"installer-paths": {
"sapphire": ["silverstripe/framework"]
- }
+}
}
}
diff --git a/install.php b/install.php
index 7b20cdd..54b2216 100644
--- a/install.php
+++ b/install.php
@@ -1121,15 +1121,19 @@ PHP
$this->statusMessage("Checking that friendly URLs work...");
$this->checkRewrite();
} else {
+ require_once 'core/startup/ParameterConfirmationToken.php';
+ $token = new ParameterConfirmationToken('flush');
+ $params = http_build_query($token->params());
+
echo <<SilverStripe successfully installed; I am now redirecting you to your SilverStripe site...
HTML;
}
@@ -1240,13 +1244,17 @@ TEXT;
}
function checkRewrite() {
+ require_once 'core/startup/ParameterConfirmationToken.php';
+ $token = new ParameterConfirmationToken('flush');
+ $params = http_build_query($token->params());
+
echo <<Testing...
HTML;
}