Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

- Fix SQL query error when displaying deliveries
- Fix error during generate associated material action
- Fix SQL warning during installation

## [2.12.5] - 2026-01-08

Expand Down
2 changes: 1 addition & 1 deletion inc/order_item.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -2162,7 +2162,7 @@ public static function install(Migration $migration)
$table . ' as goi',
],
'WHERE' => [
'goi.plugin_order_orders_id' => 'go.id',
'goi.plugin_order_orders_id' => new QueryExpression(DBmysql::quoteName('go.id')),
],
];
foreach ($DB->request($query) as $data) {
Expand Down