Issue information
-
#030834
-
Not a Bug
-
1.1.0 Final
-
-
Issue Confirmations
-
Yes (2)No (1)
Say a user signs up at my Converge installation and I currently have Drupal linked to Converge. When a user clicks on the Drupal link in their Converge account panel, convergeLogIn will be called by Converge in order for Drupal to create a new user and then log that user in. However, the plaintext Converge password is not being sent to API module hash function so when the new Drupal account is created, the user has a password of md5(NULL);
Converge does not pass a plaintext version of the password.
What exactly gets passed to the $password input of my module folder's hash function then? In this code
<?php
class drupal_custom
{
var $authType = 'username';
function hash( $password, $member, $extra = '' )
{
return md5( $password );
}
}Because i'm getting null or empty string.
making it completely impossible to authenticate a users password.
Why on earth this was this listed as "Not A Bug" is beyond me. anyway, it seems all work stopped on this a long time ago anyway, just thought i'd mention it.
1 user(s) are reading this issue
0 members, 1 guests, 0 anonymous users














