mikeill wrote:Thanks for that fix.
Unfortunately at this point I am unable to Change Parent Item (or make any edits) on a Content Category Table Item.
I get a System Message: You must select a category.
There are a section and category listed to the left of Category: and I don't actually see what it is possible to select a category within this page.
Thanks for any input.
Mike
Sorry. It is my mistake. Creating new is working but modyfication not.
The new fix is:
/administrator/components/com_menus/content_category/content_category.menu.html.php
line 155
from
if (menuId === '') {
to
if (!menuId) {
The same in
/administrator/components/com_menus/content_section/content_section.menu.html.php
line 141
from
if (menuId === '') {
to
if (!menuId) {
Now creating new and modyfication are working.