dimensions can be here? class_userprofile.php
Code:
* Prepares the User's Avatar
*
*/
function prepare_avatar()
{
fetch_avatar_from_userinfo($this->userinfo, true, false);
if ($this->userinfo['avatarurl'] == '' OR !$this->registry->options['avatarenabled'] OR ($this->userinfo['hascustomavatar'] AND !($this->userinfo['permissions']['genericpermissions'] & $this->registry->bf_ugp_genericpermissions['canuseavatar']) AND !$this->userinfo['adminavatar']))
{
$this->prepared['avatarurl'] = '';
$this->prepared['avatarsize'] = '';
}
else
{
$this->prepared['avatarsize'] = ($this->userinfo['avatarwidth'] ? ' width="' . $this->userinfo['avatarwidth'] . '"' : '')
. ($this->userinfo['avatarheight'] ? ' height="' . $this->userinfo['avatarheight']. '"' : '');
$this->prepared['avatarurl'] = $this->userinfo['avatarurl'];
}
}