Changeset 127
- Timestamp:
- 12/03/07 15:14:32 (1 year ago)
- Files:
-
- branches/RB-0.9/wp-infocard/wp/processing.pw.php (modified) (2 diffs)
- branches/RB-0.9/wp-infocard/wp/pw-config.php.wp (deleted)
- branches/RB-0.9/wp-infocard/wp/userdata.pw.php (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/RB-0.9/wp-infocard/wp/processing.pw.php
r126 r127 65 65 66 66 $mod = md5(base64_decode($claimslist['signerkeymodulus']->token_value)); 67 pw_utils::printDebug('<br/>Checking for DBv1 card hash<br/>');68 pw_utils::printDebug(' Modulus: ' . $mod . '<br/>');67 pw_utils::printDebug('<br/>Checking DBv1 card hash<br/>', 1); 68 pw_utils::printDebug('--Modulus: ' . $mod . '<br/>', 1); 69 69 70 70 $cardhash = pw_processing::calculateCardHash( … … 72 72 $mod 73 73 ); 74 pw_utils::printDebug(' CardHash: ' . $cardhash . '<br/>');74 pw_utils::printDebug('--CardHash: ' . $cardhash . '<br/>', 1); 75 75 return $cardhash; 76 76 } //end function getDBv1CardHash branches/RB-0.9/wp-infocard/wp/userdata.pw.php
r126 r127 184 184 185 185 $user_login = $datamap['user_login']->new_value; 186 pw_utils::printDebug('Creating account: ' . $user_login . '<br />');187 186 188 187 if (!pw_userdata::userLoginIsUnique($user_login)) … … 193 192 else 194 193 { 195 pw_utils::printDebug('User Login ID is unique<br />');194 pw_utils::printDebug('User LoginID set to '.$user_login.'<br /><br />'); 196 195 } 197 196 … … 454 453 case 0: 455 454 // Not found: return the defaults 456 pw_utils::printDebug(' Card not found via card hash.<br />' );455 pw_utils::printDebug('Card not found via card hash.<br />' ); 457 456 break; 458 457 … … 498 497 499 498 case 0: 500 pw_utils::printDebug(' Card not found.<br />' );499 pw_utils::printDebug('Card not found.<br />' ); 501 500 break; 502 501 default: … … 575 574 case 0: 576 575 // Not found: return the defaults 577 pw_utils::printDebug(' Card not found.<br />' );576 pw_utils::printDebug('Card not found.<br />' ); 578 577 break; 579 578 … … 623 622 624 623 case 0: 625 pw_utils::printDebug(' Card not found.<br />' );624 pw_utils::printDebug('Card not found.<br />' ); 626 625 break; 627 626 default: … … 674 673 675 674 case 0: 676 pw_utils::printDebug(' Card not found via Email.<br />' );675 pw_utils::printDebug('Card not found via Email.<br />' ); 677 676 break; 678 677 default:
