fix[installer]: remove potential security issue with chmod

This commit is contained in:
HB9HIL
2024-12-03 10:05:53 +01:00
parent 14a52539c9
commit 79c9559f4f

View File

@@ -155,9 +155,6 @@ class Core
// Write the new database.php file
$handle = fopen($output_path, 'w+');
// Chmod the file, in case the user forgot
@chmod($output_path, 0777);
// Verify file permissions
if (is_writable($output_path)) {