Ich habe die lösung gefunden ...

1zu1 übernommen

Find the file com_content located in meta_ext in the sh404sef folder and delete the lines between

PHP-Code:
  case 'frontpage'
--------
break;

In other words the code looks like this:
Code:

PHP-Code:
  case 'frontpage':
        
$shCustomDescriptionTag $mainframe->getCfg('MetaDesc');
        
$shCustomKeywordsTag $mainframe->getCfg('MetaKeys');
        
// TODO fix this, does not belong in J! 1.5
        
$query 'SELECT id, name FROM #__menu WHERE `link` LIKE \'%option=com_content&view=frontpage%\'';
        
$database->setQuery($query);
        
$shTitle $database->loadObject();
        if (empty(
$shTitle->name)) {
            
$config =& JFactory::getConfig();
            
$shCustomTitleTag $config->getValue('config.sitename');
        }
        else
        
$shCustomTitleTag $shTitle->name;
        break; 

and after this it should look like this:

Code:

PHP-Code:
 case 'frontpage':
        break; 

For safety reasons keep an unmodified copy of the file Wink


Quelle: http://extensions.siliana.net/forums...?topic=11339.0