Closed (fixed)
Project:
Site Network
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
14 Mar 2007 at 22:06 UTC
Updated:
14 Aug 2008 at 05:56 UTC
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
Comment #1
AjK commentedComment #2
OsterD commentedA 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.
Comment #3
AjK commentedThe user module is Core, not this module. If you think it's a bug with Core please file a bug report there.
Comment #4
brmassa commentedGuys,
Drupal 6 now relies entirely on Form API. its now fixed on CVS.
regards,
massa
Comment #5
Anonymous (not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.