If you enable Drupal.module on the registration page (.../user/register) there is always a hint that you can use distributed authentication.

I disabled distributed authentication but this hint is always there.

Comments

AjK’s picture

Project: Drupal core » Site Network
Version: 5.1 »
Component: drupal.module » Code
OsterD’s picture

Assigned: Unassigned » OsterD
Status: Active » Needs review

A very simple workaround to this would be the following code, under the user module on user_register() :

$affiliates = user_auth_help_links();
- if (!$admin && count($affiliates) > 0) {
+ if ((!$admin && count($affiliates) > 0) && variable_get('drupal_authentication_service', 0)) {

If I knew how to write a patch for this I would, sorry guys.
Tested on my site and works fine.

AjK’s picture

Status: Needs review » Active

The user module is Core, not this module. If you think it's a bug with Core please file a bug report there.

brmassa’s picture

Version: » 6.x-1.x-dev
Assigned: OsterD » Unassigned
Status: Active » Fixed

Guys,

Drupal 6 now relies entirely on Form API. its now fixed on CVS.

regards,

massa

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.