Is it by design that translation_node_overview() uses language_list() and not language_list('enabled')? It seems odd that my users are presented with an option to translate into a language the site doesn't support...

If this indeed is an error, let me know and I'll fix it right away!

Comments

ainigma32’s picture

Status: Active » Fixed

After trying both options in a php block in Drupal 6.6 it looks like the results are pretty much the same:

$test1 = language_list();
$test2 = language_list('enabled');

echo '<pre>';
print_r($test1);
echo '</pre>';
echo '<hr />';
echo '<pre>';
print_r($test2);
echo '</pre>';

- Arie

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.