@Wishmaster
As my German is not that good I'll try to respond in English.
The problem is with the file:
components/com_joomleague/views/roster/tmpl/default_players.php
In there is a block like
Code: Select all
<th class="td_c"><?php
$imageTitle = JText::_ ( 'COM_JOOMLEAGUE_ROSTER_TOTAL_TIME_PLAYED' );
echo JHtml::image ( 'images/com_joomleague/database/events/' . $this->project->fs_sport_type_name . '/playtime.gif', $imageTitle, array ('title' => $imageTitle,'height' => 20) );
?></th>
I'm not sure why it doens't display the icon but you can try to change it to the code below and see what happens
Code: Select all
<th class="td_c"><?php
$imageTitle = JText::_ ( 'COM_JOOMLEAGUE_ROSTER_TOTAL_TIME_PLAYED' );
echo JHtml::image ( 'images/com_joomleague/database/events/soccer/playtime.gif', $imageTitle, array ('title' => $imageTitle,'height' => 20) );
?></th>
- Did you maybe modify the file or do you have template overrides?
Did also see that these links were in the page
Code: Select all
<th class="td_c"><img src="/images/com_joomleague/database/events//played.png" alt="Gespielt" title="Gespielt" height="20" /></th>
<th class="td_c"><img src="/images/com_joomleague/database/events//startroster.png" alt="Startaufstellung" title="Startaufstellung" height="20" /></th>
<th class="td_c"><img src="/images/com_joomleague/database/events//in.png" alt="eingewechselt" title="eingewechselt" height="20" /></th>
<th class="td_c"><img src="/images/com_joomleague/database/events//out.png" alt="ausgewechselt" title="ausgewechselt" height="20" /></th>
The // appears as the "sportstype" is not been recognized correctly.
Did you enter the sportstype in the backend in the format "COM_JOOMLEAGUE_ST_SOCCER" or something else?
did notice that the links for red-card/yellow-card etc are correct so it's kind of weird.