If user logs out or opens url with a different browser, webserver_auth tries to create new account again.
Our setup is apache on linux with .htaccess doing the simple auth.
My patch for it:
(Please note that a different patch is needed if you use drupal IDs module.)
in webserver_auth.module
line 18:
$user = user_external_load($account->name);
replace with :
$user = user_load(array('name' => $account->name));
Comments
Comment #1
moshe weitzman commentedi don't understand the problem ... but in any case, the proposed fix will break if user changes his drupal username on the profile edit page.