Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
443 views
in Q2A Core by
I looked in the options on Admin > Viewing. By "Posts on user page:" it already said 20, but only 10 are being shown on each user page. Changing it (or any of the other fields) makes no difference. Any ideas?

1 Answer

0 votes
by

There's a bug in qa-page-user.php:

$questions=array_slice($questions, 0, 10);

should be

$questions=array_slice($questions, 0, $pagesize);

This will also be fixed in the 1.4 beta.

by
OK, thanks gideon!
...