Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+4 votes
289 views
in Q2A Core by
http://screencast.com/t/61fDqh1Ho3

Look at the picture above. It souldn't appear the buttons to vote on my onw question, right? Is that a bug?

1 Answer

0 votes
by
 
Best answer

Yes, thanks for catching this! You can fix it by changing function qa_db_user_recent_qs_selectspec(...) in qa-db-selects.php as follows:

$selectspec=qa_db_posts_basic_selectspec($voteuserid, false, false);

... to ...

$selectspec=qa_db_posts_basic_selectspec($voteuserid, false);

I'll fix this also for the next release.

...