From 3d3402d29160807fade01cca90f31ec975591b3e Mon Sep 17 00:00:00 2001 From: unatarajan <38731992+unatarajan@users.noreply.github.com> Date: Wed, 31 Jul 2024 12:00:58 -0400 Subject: [PATCH] Fixed typo in admin/common.php, error message was breaking the UI --- admin/common.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin/common.php b/admin/common.php index ee99f23..4e2947b 100644 --- a/admin/common.php +++ b/admin/common.php @@ -168,7 +168,7 @@ function exec_uploaddatabase($dbname, $key) { global $sqlitecloud; $sqlitecloud = do_check_connect(); - $command = ($key) ? "UPLOAD DATABASE '${dbname}' KEY '{$key}';" : "UPLOAD DATABASE '{$dbname}';"; + $command = ($key) ? "UPLOAD DATABASE '{$dbname}' KEY '{$key}';" : "UPLOAD DATABASE '{$dbname}';"; return $sqlitecloud->execute($command); }