Quote Originally Posted by rbarbour View Post
I took a look at this plugin or (complete 1.5.5e install with language package) and in:
includes/extra_datafiles/ezpages_multilangauge_database_names.php

it reads:
PHP Code:
define('TABLE_EZPAGES_TEXT'DB_PREFIX 'ezpages_content'); 
so the edit provided in post #77 should work with 1 minor edit, changing TABLE_EZPAGES_CONTENT to TABLE_EZPAGES_TEXT
PHP Code:
// BOE - Bootstrap for 1.5.6     
    
$page_query $db->Execute("SELECT e.*, ec.*
                                FROM " 
TABLE_EZPAGES " e,
                                     " 
TABLE_EZPAGES_CONTENT  " ec
                                WHERE e.pages_id = ec.pages_id
                                AND ec.languages_id = " 
. (int)$_SESSION['languages_id'] . "
                                AND e.status_sidebox = 1
                                AND e.sidebox_sort_order > 0
                                ORDER BY e.sidebox_sort_order, ec.pages_title"
);   
    
// old code for 1.5.5:
//    $page_query = $db->Execute("select * from " . TABLE_EZPAGES . " where status_sidebox = 1 and sidebox_sort_order > 0 order by sidebox_sort_order, pages_title");
// EOE - Bootstrap for 1.5.6 
Sorry I had not refreshed the page.
Indeed that fixes it.