when i view a persons profile after adding a award for them
the awards section is not showing up in the public profile ...
when i check in the admincp its showing checked as Yes for the award.
the awards are showing fine in the threads....
but not in the public profile .....
this is what i have in members.php
Code:
// [START HACK='Awards/Medals/Cards by AnimeWebby' AUTHOR='AnimeWebby' VERSION='2.0' CHANGEID= 14 ]
// AWARDS IN MEMBERINFO
$getuserawards = $DB_site->query("SELECT * FROM " . TABLE_PREFIX . "award AS award ORDER BY awardid ASC");
$show['userawards'] = false;
while ($useraward = $DB_site->fetch_array($getuserawards))
{
$userawardid = "award$useraward[awardid]";
if (!empty($userinfo[$userawardid]))
{
$userawardid_desc = $userawardid."_desc";
if ($userinfo[$userawardid_desc] != '')
{
$useraward[description] = $userinfo[$userawardid_desc];
}
$show['userawards'] = true;
eval('$userinfo[userawards] .= "' . fetch_template('awards_bit') . '";');
}
}
// END AWARDS IN MEMBERINFO
// [END HACK='Awards/Medals/Cards by AnimeWebby' AUTHOR='AnimeWebby' VERSION='2.0' CHANGEID= 14 ]
i have the arcade hack installed also and was wondering if this may be conflicting