From 041e97d741f9e444198a68021b7e17804f79de89 Mon Sep 17 00:00:00 2001 From: Adam Outler Date: Sat, 20 Sep 2025 18:12:58 -0400 Subject: [PATCH] Change default encryption key to an empty string --- front/php/server/db.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/php/server/db.php b/front/php/server/db.php index f0ee9f1a..0c046fcd 100755 --- a/front/php/server/db.php +++ b/front/php/server/db.php @@ -82,7 +82,7 @@ class CustomDatabaseWrapper { private $maxRetries; private $retryDelay; - public function __construct($filename, $flags = SQLITE3_OPEN_READWRITE | SQLITE3_OPEN_CREATE, $maxRetries = 3, $retryDelay = 1000, $encryptionKey = null) { + public function __construct($filename, $flags = SQLITE3_OPEN_READWRITE | SQLITE3_OPEN_CREATE, $maxRetries = 3, $retryDelay = 1000, $encryptionKey = "") { $this->sqlite = new SQLite3($filename, $flags, $encryptionKey); $this->maxRetries = $maxRetries; $this->retryDelay = $retryDelay;