Ciao,
anche io avevo il tuo stesso problema,
ho risolto grazie al seguente link:
http://dev.anything-digital.com/Forum/sh404SEF-for-Joomla-1.5/5151-Is-sh404sef-joomfish-2.0.3-ready-/Page-2.htmldi seguito ti riporto la funzione da modificare nel componente del sh404SEF
il file da modificare è il seguente:
administrator/components/com_sh404sef/sh404sef.class.php
e il codice in oggetto è il seguente:
-- ORIGINALE --
function shGetDefaultLang() {
$type = shIsMultilingual();
switch ($type) {
case false:
$shDefaultLang = $GLOBALS['shMosConfig_locale'];
break;
case 'joomfish':
$conf =& JFactory::getConfig();
///il cambio da fare è su questa riga:
$shDefaultLang = $conf->getValue( 'config.default');
break;
}
return $shDefaultLang;
}
-- CODICE MODIFICATO --
function shGetDefaultLang() {
$type = shIsMultilingual();
switch ($type) {
case false:
$shDefaultLang = $GLOBALS['shMosConfig_locale'];
break;
case 'joomfish':
$conf =& JFactory::getConfig();
//riga modificata
$shDefaultLang = $conf->getValue( 'config.jflang');
break;
}
return $shDefaultLang;
}
Spero ti risolvi il problema,
ciao