Yeah, I'll go thru all the files and see since that code appears a few times... look at the database script...
PHP Code:
CREATE TABLE `Users` (
`id` int(11) NOT NULL auto_increment,
`Username` text NOT NULL,
`Password` varchar(32) NOT NULL default '',
`Name` text NOT NULL,
`Email` text NOT NULL,
`Date` text NOT NULL,
`IP` text NOT NULL,
`Actkey` varchar(40) NOT NULL default '',
`Activated` int(1) NOT NULL default '0',
PRIMARY KEY (`id`)
)
If I take out the username part, would that fix it? `Username` text NOT NULL, since I don't need that, only their email...and I know I saw one or 2 parts where it made references to "username can't be the same", I guess I'd adjust those files too...sorry to be bothering you.