From af04dcf7101bf6114e0e17c4757d681bca702158 Mon Sep 17 00:00:00 2001 From: Marcin Haba Date: Mon, 26 Jun 2023 10:49:29 +0200 Subject: [PATCH] baculum: Tweak add space in multi-dimensional sorting clause --- gui/baculum/protected/API/Modules/Database.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/baculum/protected/API/Modules/Database.php b/gui/baculum/protected/API/Modules/Database.php index a8176d996..0cda1f51c 100644 --- a/gui/baculum/protected/API/Modules/Database.php +++ b/gui/baculum/protected/API/Modules/Database.php @@ -397,7 +397,7 @@ class Database extends APIModule { } if (count($odr) > 0) { $ob = $with_clause ? ' ORDER BY ' : ''; - $odr_str = $ob . implode(',', $odr); + $odr_str = $ob . implode(',', $odr) . ' '; } return $odr_str; } -- 2.47.3