There's a bug in postbit_display_complete hook... it should be:
PHP Code:
global $vbulletin;
if ($post[userid]){
$getpos = $vbulletin->db->query_first("SELECT userid,lat_map,username,lng_map FROM " . TABLE_PREFIX . "googlemapme WHERE userid = $post[userid]");
$bburl = $vbulletin->options['bburl'];
$lat = $getpos['lat_map'];
$lng = $getpos['lng_map'];
if ($lat)
{
$post['findme'] = "<a href=\"$bburl/vbgooglemapme.php?lat=$lat&lng=$lng&zoom=10\" target=\"_self\">$vbphrase[vbgooglemapme_findme]</a>";
}
else
{
$post['findme'] = "";
}
}
else
{
$post['findme'] = "";
}
Note the $post['findme'] had been placed outside the parenthesis, so it was wiping out any user that had been found