this function in qa-app-format.php needs to be rewritten in order to include "qa/" at the beginning of the usershtml. Can anyone help?
function qa_who_to_html($isbyuser, $postuserid, $usershtml, $ip=null, $microformats=false)
/*
Return array of split HTML (prefix, data, suffix) to represent author of post
*/
{
if (qa_to_override(__FUNCTION__)) { $args=func_get_args(); return qa_call_override(__FUNCTION__, $args); }
if (isset($postuserid) && isset($usershtml[$postuserid])) {
$whohtml=$usershtml[$postuserid];
if ($microformats)
$whohtml='<SPAN CLASS="vcard author">'.$whohtml.'</SPAN>';
} elseif ($isbyuser)
$whohtml=qa_lang_html('main/me');
else {
$whohtml=qa_lang_html('main/anonymous');
if (isset($ip))
$whohtml=qa_ip_anchor_html($ip, $whohtml);
}
return qa_lang_html_sub_split('main/by_x', $whohtml);