Subj : logon.js.patch - take a look at sbbsdefs.js please
To : Digital Man
From : echto
Date : Wed Nov 16 2011 05:49 pm
Re: logon.js.patch - take a look at sbbsdefs.js please
By: Digital Man to echto on Wed Nov 16 2011 15:46:46
> It's not obvious to me what you think the problem is. These U_FLAG* macros
Ok, it just looks kind of odd to me; the 'field values for
system.matchuserdata() section.
var U_ALIAS =0;
var U_NAME =U_ALIAS+LEN_ALIAS;
var U_HANDLE =U_NAME+LEN_NAME;
var U_NOTE =U_HANDLE+LEN_HANDLE+2;
var U_COMP =U_NOTE+LEN_NOTE;
var U_COMMENT =U_COMP+LEN_COMP+2;
var U_NETMAIL =U_COMMENT+LEN_COMMENT+2;
var U_ADDRESS =U_NETMAIL+LEN_NETMAIL+2;
var U_LOCATION =U_ADDRESS+LEN_ADDRESS;
var U_ZIPCODE =U_LOCATION+LEN_LOCATION;
var U_PASS =U_ZIPCODE+LEN_ZIPCODE+2;
var U_PHONE =U_PASS+8;
var U_BIRTH =U_PHONE+12;
/going psuedo here/
U_ALIAS = 0;
U_NAME = alias plus length
U_NEMAIL = comment + length of comment 2
U_PASS = zipcode
U_BIRTH = phone number
FIrst impression from looking at it and seeing BIRTH = PHONE kinda made me
wonder if the 2 columns were pasted together incorrectly.