Skip to content

Commit

Permalink
fix(install): missing row in sql query, causing PHP warning
Browse files Browse the repository at this point in the history
  • Loading branch information
btry committed Jun 21, 2023
1 parent 1b71d65 commit 0c47776
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install/upgrade_to_2.13.6.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public function migrateToRichText() {

foreach ($tables as $table => $fields) {
$request = [
'SELECT' => ['id'] + $fields,
'SELECT' => array_merge(['id'], $fields),
'FROM' => $table
];
foreach ($DB->request($request) as $row) {
Expand Down

0 comments on commit 0c47776

Please sign in to comment.