We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33d87cc commit 385c6ffCopy full SHA for 385c6ff
2 files changed
CHANGELOG.md
@@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
9
10
- Fix SQL query error when displaying deliveries
11
- Fix error during generate associated material action
12
+- Fix SQL warning during installation
13
14
## [2.12.5] - 2026-01-08
15
inc/order_item.class.php
@@ -2162,7 +2162,7 @@ public static function install(Migration $migration)
2162
$table . ' as goi',
2163
],
2164
'WHERE' => [
2165
- 'goi.plugin_order_orders_id' => 'go.id',
+ 'goi.plugin_order_orders_id' => new QueryExpression(DBmysql::quoteName('go.id')),
2166
2167
];
2168
foreach ($DB->request($query) as $data) {
0 commit comments