Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
  • Register
Welcome to the Q&A for Question2Answer.

If you have questions about the platform, click here to ask and please use English.

If you just want to try Q2A, please use the demo, which also grants admin access.

Apr 29: Q2A 1.5.2

Bug - question is not visible!

+1 vote

http://question2answer.org/qa/10334/how-to-change-title-of-question-pages

Looks like a HTML encoding bug where <title> appears :)

EDIT: it also breaks the AJAXrelated questions when asking - if you put "How to change title of question pages?" as the title, it cuts off the list that appears.

asked Nov 8, 2011 in Q2A Core by DisgruntledGoat
edited Nov 8, 2011 by DisgruntledGoat

1 Answer

0 votes

Thanks - both fixed on this site. Unfortunately the instance of this bug relating to the Ajax-generated list of related questions is also in 1.4.x release code. It can be fixed in qa-ajax-asktitle.php by searching for:

.$question['title'].

... and replacing with ...

.qa_html($question['title']).

Thanks for catching this!

answered Nov 8, 2011 by gidgreen