Quote:
Originally Posted by Lottis
Anyone like to help me take the time away?
|
yes, in modified showthread.php file for this hack, look for:
PHP Code:
if (!empty($+++++adarray))
{
$+++++adids = array_keys($+++++adarray);
$+++++sult = $DB_site->query("SELECT user.* FROM ".TABLE_PREFIX."user AS user WHERE userid IN (".implode(",",$+++++adids).") ORDER BY username");
$+++++ad = "";
while ($whodata = $DB_site->fetch_array($+++++sult))
{
$+++++ad .= "<a href=\"member.php?u=$whodata[userid]\">".fetch_musername($whodata)."</a> (".vbdate($vboptions['dateformat'], $+++++adarray[$whodata['userid']], true, true, false)." ".vbdate($vboptions['timeformat'], $+++++adarray[$whodata['userid']], true, true, false)."), ";
}
if ($+++++ad)
{
$+++++ad = substr($+++++ad, 0, strlen($+++++ad)-2);
}
$total+++++ad = @count($+++++adarray);
}
and replace it for:
PHP Code:
if (!empty($+++++adarray))
{
$+++++adids = array_keys($+++++adarray);
$+++++sult = $DB_site->query("SELECT user.* FROM ".TABLE_PREFIX."user AS user WHERE userid IN (".implode(",",$+++++adids).") ORDER BY username");
$+++++ad = "";
while ($whodata = $DB_site->fetch_array($+++++sult))
{
$+++++ad .= "<a href=\"member.php?u=$whodata[userid]\">".fetch_musername($whodata)."</a>, ";
}
if ($+++++ad)
{
$+++++ad = substr($+++++ad, 0, strlen($+++++ad)-2);
}
$total+++++ad = @count($+++++adarray);
}
that should remove the date time info.