Calling all Drupal developers!
Help us get this on the first page of Digg. DIGG NOW!
Help us get this on the first page of Digg. DIGG NOW!
i18n_frontpage($lang = NULL)
contributions/i18n/i18n.module, line 658
Language dependent front page This function will search for aliases like 'en/home', 'es/home'...
<?php
function i18n_frontpage($lang = NULL) {
$lang = $lang ? $lang : i18n_get_lang();
return i18n_get_normal_path($lang.'/'.variable_get('site_frontpage','node'));
}
?>