Skip to content

Commit

Permalink
Fix for MODX 3 (#320)
Browse files Browse the repository at this point in the history
To get the table name the class has to be 'qualified'.
  • Loading branch information
Jako authored Mar 8, 2021
1 parent c32bab9 commit 4aa35b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _build/resolvers/resolve.updatefromfirst.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
'workspace' => 1,
"(SELECT
`signature`
FROM {$modx->getTableName('modTransportPackage')} AS `latestPackage`
FROM {$modx->getTableName('transport.modTransportPackage')} AS `latestPackage`
WHERE `latestPackage`.`package_name` = `modTransportPackage`.`package_name`
ORDER BY
`latestPackage`.`version_major` DESC,
Expand Down

0 comments on commit 4aa35b2

Please sign in to comment.