I want to have the favorite icon on question lists for each question as well.
is there a way to modify the code to get that to work ?
$favorite=@$this->content['favorite'];
if (isset($favorite)) {
$this->output('<DIV CLASS="qa-favoriting" '.@$favorite['favorite_tags'].'>');
$this->favorite_inner_html($favorite);
$this->output('</DIV>');
}
It seems that the needed parameters could be listed as needed for the function
function qa_user_favorite_set($userid, $handle, $cookieid, $entitytype, $entityid, $favorite)
As always, any hint is welcome !