Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
322 views
in Q2A Core by

I have attached the picture to make it properly understand.

 

 

On clicking answered it redirect to below page.

You can also see address on both picuters .

I have made a fresh installation and i have also tried 2-3 times fresh installtion.

Please help me out what i going on.

Q2A version: 1.5

1 Answer

+2 votes
by
selected by
 
Best answer

Thanks - this is indeed a bug in Q2A 1.5 that shows up with certain URL formats. Please try changing the following in qa-app-format.php:

$fields['what_url']='?show='.qa_html($postid).'#'.qa_html($anchor);

... to ...

$fields['what_url']=qa_path_html(qa_request(), array('show' => $postid), null, null, qa_anchor($post['basetype'], $postid));

This fix will be rolled into Q2A 1.5.1.

...