Sorry i dont see that part of the code, this is what i have in my "dto_garage_popup_menu"
global $pm, $threadpm;
$show['dto_garage_has_vehicles'] = false;
$usepostid = false;
$doable = false;
// If this is a private message postbit draw then retrieve the userinfo of the user that the PM is from
if (THIS_SCRIPT == 'private') {
if ($_REQUEST['do']!= 'showhistory')
{
$userinfo = fetch_userinfo($pm['fromuserid']);
$doable = true;
}
}
else if ((THIS_SCRIPT == 'showpost' || THIS_SCRIPT == 'showthread' || THIS_SCRIPT == 'newreply') && $post['visible'] != 2)
{
$usepostid = true;
// Get the poster's userinfo
$userinfo = fetch_userinfo($post['userid']);
$doable = true;
}
if($doable && !empty($userinfo))
{
require_once(DIR . '/includes/functions_dto_garage_common.php');
// Build the Garage popup menu for this user
$dto_garage_popup_menu = generate_garage_popup_menu($userinfo, false, true, false);
eval('$template_hook[postbit_userinfo_right] .= "' . fetch_template('dto_garage_postbit_userinfo') . '";');
}
|