ye sure here is how i did it......
1
Goto /administrator/components/com_google_maps/google_maps.class.php
2
FIND
$query4 = 'SELECT b.name, a.* FROM #__users AS b'
REPLACE WITH
$query4 = 'SELECT b.*, a.* FROM #__users AS b'
FIND
$query4 = 'SELECT DISTINCT b.name, a.* FROM #__users AS b, #__comprofiler AS a, #__session AS c'
REPLACE WITH
$query4 = 'SELECT DISTINCT b.*, a.* FROM #__users AS b, #__comprofiler AS a, #__session AS c'
FIND
$info .= ($row->name) ? '<name>'.str_replace($badChars,$goodChars,$row->name).'</name>' : '<name />';
REPLACE WITH
$info .= ($row->username) ? '<name>'.str_replace($badChars,$goodChars,$row->username).'</name>' : '<name />';
and that's it........
CB3PD Developer assistent - phpBB Connector plugin