Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
639 views
in Q2A Core by
hi,

i test the version 1.6.3 with Safari - IE - Chrome - FIrefox

When we go to admin => user

we desactivate : Allow users with posts to change their username

but with Safari, IE they can change the username.

Any idea ?

Thank you for you help

Claude
Q2A version: 1.6.3

1 Answer

+1 vote
by
 
Best answer

ok get it sorry :

And in qa-page-account.php line 59

$changehandle=qa_opt('allow_change_usernames') || ((!$userpoints['qposts']) && (!$userpoints['aposts']) && (!$userpoints['cposts']));

should be: 

$changehandle=qa_opt('allow_change_usernames');
 

Then it works like expected.

 

 

by
Hi q2apro,

yes this solution come from this link,

Thank you ;)
...