2
it's in modules/system/blocks/system_blocks.php
somewhere in line 286
Quote:
$block['users'][$i]['id'] = $newmembers[$i]->getVar('uid');
$block['users'][$i]['name'] = $newmembers[$i]->getVar('uname');
you can change "uname" to "name". something like this..
Quote:
$block['users'][$i]['name'] = $newmembers[$i]->getVar('name');
then, update your template.. hope that make sense...
happy xoopsing..