Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
2.4k views
in Q2A Core by
I disabled tags and suddenly it became impossible to ask a question, because at least 1 tag has to be provided. I assume this is a bug?
Q2A version: 1.6.1

1 Answer

+1 vote
by

Yes, it will happen if you disable tags after setting a non-zero minimum. You should be able to fix it by modifying qa-page-ask.php as follows:

$in['tags']=qa_get_tags_field_value('tags');

... to ...

if (qa_using_tags()) $in['tags']=qa_get_tags_field_value('tags');

The fix will be rolled into Q2A 1.6.2.

...