Thanks for your help !
Daniel Dimitrov wrote:No, everything is possible
Cool
Impossible is nothing
/*
* set _profiles[userid][avatar]
*/
if ($this->_avatar)
$this->_profiles[$item['user_id']]['avatar'] = $item['avatar'];
else
$this->_profiles[$item['user_id']]['avatar'] = false;
/*
* set _profiles[userid][id of cb]
*/
if ($this->_profile)
$this->_profiles[$item['user_id']]['id'] = $item['user_id'];
else
$this->_profiles[$item['user_id']]['id'] = false;
}
I try to put the code but wherever I place it, there is an error :
Fatal error: Cannot instantiate non-existent class: josc_board in [...]/www/components/com_comment/joscomment/utils.php on line 179
A ";" is missing at the end isn't it ? :
if (guest)
$avatar = http://www.pathtothepicure.jpg
(Even my registered users without avatar selected have no standart picture. Is that the normal comportement of the component?)