modif credit recommendation

This commit is contained in:
Damien LASSERRE 2011-04-14 09:54:08 +00:00
parent 1a471bbea4
commit 566d747f9f

View File

@ -1,8 +1,7 @@
<table class="CreditRecommendation" width="100%"> <table class="CreditRecommendation" width="100%">
<?php <?php
$i = 0;
$i = 0; foreach($CreditRecommendation as $Credit){
foreach($CreditRecommendation as $Credit)
foreach($Credit as $champ => $valeur) foreach($Credit as $champ => $valeur)
{ {
echo '<tr>'; echo '<tr>';
@ -43,8 +42,9 @@ foreach($CreditRecommendation as $Credit)
echo '<tr>'; echo '<tr>';
echo '<td class="GiantTooltip" title="'; echo '<td class="GiantTooltip" title="';
if (isset($info->Description)) { if (isset($info->Description)) {
foreach ($info->Description as $desc) foreach ($info->Description as $desc) {
$desc->_; echo $desc->_;
}
} }
echo '">'.$info->RatingName->_. '</td>'; echo '">'.$info->RatingName->_. '</td>';
echo '<td>'.$info->RatingValue.'</td>'; echo '<td>'.$info->RatingValue.'</td>';
@ -79,5 +79,6 @@ foreach($CreditRecommendation as $Credit)
} }
} }
} }
?> }
?>
</table> </table>