Skip to content

Commit

Permalink
pkp#10249 Cast object to array
Browse files Browse the repository at this point in the history
  • Loading branch information
jonasraoni authored and Hafsa-Naeem committed Dec 11, 2024
1 parent 423377f commit b4bbdba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion classes/migration/upgrade/PKPv3_3_0UpgradeMigration.php
Original file line number Diff line number Diff line change
Expand Up @@ -891,7 +891,7 @@ private function _toJSON($row, $tableName, $searchBy, $valueToConvert)
}

if (!count($primaryKeys)) {
foreach (array_keys($row) as $column) {
foreach (array_keys(get_object_vars($row)) as $column) {
if (substr($column, -3, '_id')) {
$primaryKeys[] = $column;
}
Expand Down

0 comments on commit b4bbdba

Please sign in to comment.