Posted by abacs on February 19, 2009 at 3:06pm
Jump to:
| Project: | YUI Menu |
| Version: | 6.x-1.1-rc1 |
| Component: | User interface |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | closed (fixed) |
Issue Summary
hi,
i can set the menus for different languages, but i see the wrong submenus (submenus from other languages).
Csaba
Comments
#1
Hi, I solved the problem adding this lines (+) to yuimenu.module:
function get_html_menu_script ($menu_id) {
$output .='
';
$menu = load_menu($menu_id);
+if(module_exists('i18nmenu')) {
+ i18nmenu_localize_tree($menu);
+ }
You can use this post as a reference: http://drupal.org/node/300628
#2
Thank you relayer3000. I added you code into yuimenu.
#3
Automatically closed -- issue fixed for 2 weeks with no activity.