In the modules
| Code: |
case 1:
echo "<br />".PUA_SCORES.": ".clsPUArcade::NumScores($game->id)."</td>";
break;
case 2:
echo "<br />".PUA_TIMES_PLAYED.": ".$game->numplayed."</td>";
break;
case 3:
echo "<br />Rating: ".clsPUArcade::GetCurrentRating($game->id)."</td>";
break;
|
the ."</td>" can be deleted, because its closed later in the code with
And its better use the " to make it validate. like this one:
BEFORE
| Code: |
<table width=100% border=0 cellspacing=0 cellpadding=1>
|
AFTER
| Code: |
<table width="100%" border="0" cellspacing="0" cellpadding="1">
|
There are also some points wich cant be validate in the puarcade.html.php.