Downloads
Release notes
This is a major release, and contains one very significant change.
New Features
-- #534330: menu_parent_URL token for use with pathauto by roboneale. Adds token support.
There are two tokens:
-- 'menu-parent-path-alias'
Path alias of parent menu item. This is a raw path, and has not been
sanitized. However, using it with pathauto will force the '/' characters
to be stripped.
-- 'menu-parent-path-alias-path'
Path-safe alias of parent menu item. Use this token with pathauto to
preserve / characters.
Note: if the item has no parent, the token returns t('content').
-- #552418: Conflict with core node access permission by BenKewell. Makes MNE extend node access instead of replace it.
This second fix is more important, and changes the way that MNE interacts with other access control modules. In the past, MNE overwrote the 'edit' permission defined in node_access(). With this change, we now simply _extend_ that permission. That is, if Node Access rules allow someone to edit content, we do not remove that ability. We instead _extend_ it so that users with the 'edit X type in my sections' permission may be allowed to edit items that normal Node Access rules disallow.