Update characterprofile.php

ops
This commit is contained in:
Atte 2014-09-11 15:47:09 +03:00
parent 47a90f17e6
commit 782e335810

View File

@ -53,12 +53,13 @@ if (isset($_GET['name']) === true && empty($_GET['name']) === false) {
?></font></li> ?></font></li>
<!-- Achievement start --> <!-- Achievement start -->
<?php <?php if ($config['Ach'] == true) {
foreach ($achievementPoints as $achievement) foreach ($achievementPoints as $achievement)
{ {
if ($achievement > 0) //if player doesn't have any achievement points it won't echo the line below. if ($achievement > 0) //if player doesn't have any achievement points it won't echo the line below.
echo '<tr><td>Achievement Points</td><td>' .$achievement. ' </td></tr>'; echo '<tr><td>Achievement Points</td><td>' .$achievement. ' </td></tr>';
} }
}
?> ?>
<!-- Achievement end --> <!-- Achievement end -->
<?php $houses = array(); <?php $houses = array();