We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We have a "multi_lang" configuration with multiple locales (nl/en/de). If the page is not translated then it will show the page multiple times in the admin menu. This method https://github.com/Kunstmaan/KunstmaanBundlesCMS/blob/7.x/src/Kunstmaan/NodeBundle/Repository/NodeRepository.php#L262 returns the same node multiple times.
It can also be solved to use $this->treeNodes[$parent_id][$nodeInfo['id']] = $nodeInfo; on this line https://github.com/Kunstmaan/KunstmaanBundlesCMS/blob/7.x/src/Kunstmaan/NodeBundle/Helper/Menu/PageMenuAdaptor.php#L154
$this->treeNodes[$parent_id][$nodeInfo['id']] = $nodeInfo;
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We have a "multi_lang" configuration with multiple locales (nl/en/de). If the page is not translated then it will show the page multiple times in the admin menu. This method https://github.com/Kunstmaan/KunstmaanBundlesCMS/blob/7.x/src/Kunstmaan/NodeBundle/Repository/NodeRepository.php#L262 returns the same node multiple times.
It can also be solved to use
$this->treeNodes[$parent_id][$nodeInfo['id']] = $nodeInfo;
on this line https://github.com/Kunstmaan/KunstmaanBundlesCMS/blob/7.x/src/Kunstmaan/NodeBundle/Helper/Menu/PageMenuAdaptor.php#L154The text was updated successfully, but these errors were encountered: