Error when executing Reset Password

I have the solution configured and working great, but I need to disable users from being asked for PasswordAnswer when resetting the password. I have the requiresQuestionAndAnswer="false" in all the web.config filed (WebService & inetpub WebApp), but I am still getting prompted to reset the password.

Is there anywhere I can force it to disable asking the question?

<add name="i" type="Microsoft.SharePoint.Administration.Claims.SPClaimsAuthMembershipProvider, Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" enablePasswordReset="true" requiresQuestionAndAnswer="false" />

Thanks.
The issue is that you're editing the wrong membership provider. You're editing the SPClaimsAuthMembershipProvider - this is really just a SharePoint proxy provider to your SQLMembershipProvider. Find your SQLMembershipProvider entries and edit them.