Quote Originally Posted by Woodymon View Post

Quote:
Originally Posted by mrtorrez View Post

Yes, for all languages.
maybe something is incompatible in:
includes/modules/sideboxes/YOUR-TEMPLATE/ezpages_drop_menu.php ?

For testing purposes, check line 23 in the above file. If you have "and sidebox_sort_order > 0" on that line, then remove that code. Does that help?


Woody
Woody, thanks for the hint!
I've completely replaced line 23 in includes/modules/sideboxes/YOUR-TEMPLATE/ezpages_drop_menu.php with the following code:

$my_query = "select n.*, ml.* FROM " . TABLE_EZPAGES . " n, " . TABLE_EZPAGES_TEXT . " ml
where n.status_header = 1
AND '" . $_SESSION['languages_id'] . "' = ml.languages_id
order by n.sidebox_sort_order, n.pages_title";

$page_query = $db->Execute($my_query);



It's now working with the Multilanguage Ezpages-mod except the ezpages-titles are shown too as list in the header (below logo).
I think this is another issue?

grmx