Closed (fixed)
Project:
Arctica
Version:
7.x-2.x-dev
Component:
Code
Priority:
Major
Category:
Bug report
Assigned:
Reporter:
Created:
11 Sep 2012 at 09:21 UTC
Updated:
29 Oct 2012 at 20:01 UTC
From sooperthemes forum:
All translated menu items (using i18n_menu) are displayed resulting in duplicate menu items.
Solution:
In themes/artica/arctica/preprocess/preprocess-page.inc on line 26, change:
$tree = menu_tree($pid);with:
if (module_exists('i18n_menu')) { $tree = i18n_menu_translated_tree($pid); } else { $tree = menu_tree($pid); }
Can this solution be committed?
Thak you very much
Comments
Comment #1
jurriaanroelofs commentedThanks, I'm going to commit this to the 2.x branch that will be released soon.
Comment #2
lolandese commentedIt's not in 2.0-beta1. If you are using i18n_menu (part of i18n), apply it manually for now. The line to replace is still number 26.
Comment #3
mxtComment #4
jurriaanroelofs commentedfixed in dev