Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+3 votes
307 views
in Q2A Core by
Here is a typo:
Original:
$fields['avatar']=qa_get_external_avatar_html($post['ouserid'], $options['avatarsize'], false);

Sholud be:
$fields['avatar']=qa_get_external_avatar_html($question['ouserid'], $options['avatarsize'], false);

$post is undefined in that function, it should be $question.
Q2A version: 1.5

1 Answer

+2 votes
by
Thanks. This is already fixed in Q2A 1.6-dev.
...