I used to retrieve the raw content of a question in function q_item_main by using this line:
$rawquestion = qa_viewer_text($question['content'], '', '');
For some reason, using that in 1.5 gives me this notice:
Undefined index: content
I also tried this:
$rawquestion = qa_viewer_text($q_item['content'], '', '');
Still the same notice. Any tips?