da ist das plugin verantwortlich. gehe in die attachments.php im ordner plugins/content und ergänze ab zeile 85
PHP-Code:
function addAttachments( &$row, &$params, $page=0 )
{
// Only display attachments for content (articles)
global $option;
if ( $option != 'com_content' )
return;
// Only display attachments for articleview, not in blogview (articles)
$view = JRequest::getCmd('view');
if ($view != 'article')
return;
// Apparently this is called before articles are displayed (ignore those calls)
if ( !isset($row->id) )
return;
Lesezeichen