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
Menu item aliases are being changed, even if Joomla has no issues or conflicts. This happens when there are 2 menu items with the same aliases but having different parent.
Quickest fix would change the array to be multi-dimensional (without looking into the code):
$aliases[$item->parent] = $item->alias->id;
And by checking
if (in_array($aliases[$item->parent])) changeAlias();
The text was updated successfully, but these errors were encountered:
Menu item aliases are being changed, even if Joomla has no issues or conflicts. This happens when there are 2 menu items with the same aliases but having different parent.
Quickest fix would change the array to be multi-dimensional (without looking into the code):
And by checking
The text was updated successfully, but these errors were encountered: