Closed (won't fix)
Project:
Drupal vB
Version:
5.x-1.2
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
22 Apr 2008 at 20:39 UTC
Updated:
28 Apr 2008 at 18:11 UTC
Around line 634 in drupalvb.module, there is a reference to $useredit in the following line:
drupalvb_msg(null, 'Your user account for the forums has been generated.');
if (_drupalvb_create_vb_user($useredit->name, $edit['pass'], $edit['mail'], $vblink)) {
I believe instead this should read as follows:
drupalvb_msg(null, 'Your user account for the forums has been generated.');
if (_drupalvb_create_vb_user($edit_user->name, $edit['pass'], $edit['mail'], $vblink)) {
The $useredit has been changed to $edit_user.
Comments
Comment #1
sunThanks. Please consider testing 5.x-2.x.
Comment #2
sun5.x-2.x is the recommended major version now.