aboutsummaryrefslogtreecommitdiffstats
path: root/includes/installer/SqliteInstaller.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/installer/SqliteInstaller.php')
-rw-r--r--includes/installer/SqliteInstaller.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/includes/installer/SqliteInstaller.php b/includes/installer/SqliteInstaller.php
index c0e7480bef78..7a5d27b2131a 100644
--- a/includes/installer/SqliteInstaller.php
+++ b/includes/installer/SqliteInstaller.php
@@ -154,7 +154,9 @@ class SqliteInstaller extends DatabaseInstaller {
}
}
# Put a .htaccess file in case the user didn't take our advice
- file_put_contents( "$dir/.htaccess", "Require all denied\n" );
+ file_put_contents( "$dir/.htaccess",
+ "Require all denied\n" .
+ "Satisfy All\n" );
return Status::newGood();
}