Remove files that shouldn't be in PR: db.php, cron files

This commit is contained in:
Adam Outler
2025-11-17 02:57:42 +00:00
parent f1ecc61de3
commit 6206e483a9
3 changed files with 12 additions and 10 deletions

View File

@@ -28,8 +28,6 @@ if (!is_dir($dbFolderPath)) {
@mkdir($dbFolderPath, 0775, true);
}
$dbFolderPath = rtrim($dbFolderPath, '/') . '/';
$DBFILE = rtrim($dbFolderPath, '/') . '/app.db';
if (!file_exists($DBFILE) && file_exists($legacyDbPath)) {
$DBFILE = $legacyDbPath;
@@ -43,8 +41,6 @@ if (!is_dir($logFolderPath)) {
@mkdir($logFolderPath, 0775, true);
}
$logFolderPath = rtrim($logFolderPath, '/') . '/';
$DBFILE_LOCKED_FILE = rtrim($logFolderPath, '/') . '/db_is_locked.log';