Hi,
After upgrading to CB 1.8, one of my plugins doesn't display it's tab content properly anymore.
Code:
if ( $data->is_valid == 1)
{
$return .='<div align="left"><img style="border-width: 5px; border-style: solid; border-color: '. $data->account_status .' ;" src=' . $data->avatar_body .'>
<table style="width: 654px; height: 290px; border-color: '. $onlinecolor .'; border-width: 2px; border-style: solid;" summary="Last 5 games played" align="right" border="0"><caption>Last 5 Games Played</caption>
<tbody>
<tr>
<td><img style="display: block; margin-left: auto; margin-right: auto;" alt="" src='. $data->{recent_games}[1]->images->boxart_small .' height="120" width="85" /></td>
<td><img style="display: block; margin-left: auto; margin-right: auto;" alt="" src='. $data->{recent_games}[2]->images->boxart_small .' height="120" width="85" /></td>
<td><img style="display: block; margin-left: auto; margin-right: auto;" alt="" src='. $data->{recent_games}[3]->images->boxart_small .' height="120" width="85" /></td>
<td><img style="display: block; margin-left: auto; margin-right: auto;" alt="" src='. $data->{recent_games}[4]->images->boxart_small .' height="120" width="85" /></td>
<td><img style="display: block; margin-left: auto; margin-right: auto;" alt="" src='. $data->{recent_games}[5]->images->boxart_small .' height="120" width="85" /></td>
</tr>
<tr>
<td style="text-align: center;">'. $data->{recent_games}[1]->last_played .'</td>
<td style="text-align: center;">'. $data->{recent_games}[2]->last_played .'</td>
<td style="text-align: center;">'. $data->{recent_games}[3]->last_played .'</td>
<td style="text-align: center;">'. $data->{recent_games}[4]->last_played .'</td>
<td style="text-align: center;">'. $data->{recent_games}[5]->last_played .'</td>
</tr>
</tbody>
</table></div>';
This table no longer gets displayed, and when I say it doesn't get displayed I mean NOTHING, no errors, no weird charactors, nothing. The new cb must be repressing this, but I don't know where to look. Any help?