Hi all, I think I've found a bug with GL's multilingual support. Let me explain.
At a multilingual-aware site, objects have ids with '_' (underscore) and lnaguage shortcuts at their tail, for example, 'Introduction_en', 'Introduction_de'.
In displaying contents, Geeklog uses COM_getLangSQL() and identifies the current langugae a user prefers.
This is implemented in COM_getLangSQL() at line 5940,
Text Formatted Code
$sql = ' ' . $type . " ({$table}$field LIKE '%_$lang_id')";
'%' is a wildcard character in SQL, equivalent to '*' in regular expressions. So this code intends "Select ids which ends "_$lang_id".
Unfortunately, '_' is a wildcard character in SQL, equivalent to '.' in regular expressions.
http://dev.mysql.com/doc/refman/5.0/en/pattern-matching.html
Thus, line 5940 picks up any ids which end with any given language shortcuts **WITHOUT** a preceding '_'.
This is a bit inconvenient and inconsistent.
-- mystral-kk, "Every cloud has a silver lining."