Skip to content

Commit

Permalink
#10445 Fix broken call to substr
Browse files Browse the repository at this point in the history
  • Loading branch information
asmecher committed Sep 18, 2024
1 parent f5c5b97 commit 3ba2e29
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 @@ -892,7 +892,7 @@ private function _toJSON($row, $tableName, $searchBy, $valueToConvert)

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

0 comments on commit 3ba2e29

Please sign in to comment.