You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While creating the link for a detail page (CmsDefaultDetailPageHandler.java), the resource type of the resource is not read from the resource itself but from the parent folder (defined in the module config). If more than one resource type is in the same content folder, the link creation fails, because the latest entry in the config overrides the other.
folder (github issue #769).
Note that the folder that the linked content is in must still be the
content folder of *some* type configured in the sitemap configuration.
While creating the link for a detail page (CmsDefaultDetailPageHandler.java), the resource type of the resource is not read from the resource itself but from the parent folder (defined in the module config). If more than one resource type is in the same content folder, the link creation fails, because the latest entry in the config overrides the other.
Example:
Resource types in module config
JSP for announcement entry with a link to its detail page:
<cms:link>${content.filename}</cms:link>
--> filename: /support/announcement_00001.xml
CmsADEManager.getParentFolderType(true, '/.content/support/')
--> faq (not announcement)
--> no detail page link created
The text was updated successfully, but these errors were encountered: