I found an error in the hack.
In the modification member.php, the hack document fetch an nonexisting template.
You make the hack as fellowing:
==>Find:
PHP Code:
// END CUSTOM PROFILE FIELDS
// *************************
==>Add below:
PHP Code:
// AWARDS IN MEMBERINFO
$getawards = $DB_site->query("SELECT * FROM " . TABLE_PREFIX . "award AS award ORDER BY awardid ASC");
$show['awards'] = false;
while ($useraward = $DB_site->fetch_array($getawards))
{
$userawardid = "award$useraward[awardid]";
if (!empty($userinfo[$userawardid]))
{
$userawardid_desc = $userawardid."_desc";
if ($userinfo[$userawardid_desc] != '')
{
$useraward[description] = $userinfo[$userawardid_desc];
}
$show['awards'] = true;
eval('$awardsbit .= "' . fetch_template('awards_bit') . '";');
}
}
// END AWARDS IN MEMBERINFO