Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+2 votes
207 views
in Q2A Core by
edited by

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.

1 Answer

+1 vote
by

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!

...