Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bug #6330 [PATCH] Erroneously fails to search when table names match …
…(ksn135) This PR was squashed before being merged into the 4.x branch. Discussion ---------- [PATCH] Erroneously fails to search when table names match Fix #6329 Commits ------- cf22ec8 [PATCH] Erroneously fails to search when table names match
- Loading branch information
5f4413d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This creates a new bug like '[Semantical Error] line 0, col 184 near '.feedContainer': Error: Identification Variable feed used in join path expression but was not defined before.' in case you have a field 'feed.feedContainer.title'
This is because the $parentEntityName has not implemented the number suffix.
It works if you add it in row 269: '$parentEntityName = 0 === $i ? 'entity' : $associatedProperties[$i - 1].((string)($i - 1));' <----------------
5f4413d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
see PR #6388