Fix typo in the index.php

This commit is contained in:
⭐ B3none 2019-07-05 20:11:00 +01:00 committed by GitHub
parent e50721eb8e
commit 1258182265
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@
if (!file_exists('bl-content/databases/site.php')) {
$base = dirname($_SERVER['SCRIPT_NAME']);
$base = rtrim($base, '/');
$base = rtrim($base, '\\'); // Workarround for Windows Servers
$base = rtrim($base, '\\'); // Workaround for Windows Servers
header('Location:'.$base.'/install.php');
exit('<a href="./install.php">Install Bludit first.</a>');
}