Tidying per sonar recommendations

This commit is contained in:
wrongecho
2025-01-02 21:09:27 +00:00
parent f39b0eb367
commit 2d403415d4
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -20,7 +20,7 @@ if ($currentUser !== $fileOwner) {
exit(1); exit(1);
} }
require_once 'config.php'; require_once "config.php";
require_once "functions.php"; require_once "functions.php";
// A function to print the help message so that we don't duplicate it // A function to print the help message so that we don't duplicate it
@@ -103,7 +103,7 @@ if (isset($options['update']) || isset($options['force_update'])) {
// If "update_db" is requested // If "update_db" is requested
if (isset($options['update_db'])) { if (isset($options['update_db'])) {
require_once('database_version.php'); require_once "database_version.php";
$latest_db_version = LATEST_DATABASE_VERSION; $latest_db_version = LATEST_DATABASE_VERSION;
@@ -114,7 +114,7 @@ if (isset($options['update_db'])) {
$old_db_version = $row['config_current_database_version']; $old_db_version = $row['config_current_database_version'];
// Now include the update logic // Now include the update logic
require_once('database_updates.php'); require_once "database_updates.php";
// After database_updates.php has done its job, fetch the updated current DB version again // After database_updates.php has done its job, fetch the updated current DB version again
$result = mysqli_query($mysqli, "SELECT config_current_database_version FROM settings LIMIT 1"); $result = mysqli_query($mysqli, "SELECT config_current_database_version FROM settings LIMIT 1");