William Lang - 2008-09-18 15:41:57
Hey,
Great class. But I think you should make some changes to your user_add function. Currently you have hard coded the language to the function. You should include the language in the vars array.
To be honest you should include all the different values, like the timezone and date format etc etc...
You could have an if clause like
if (!array_key_exists('timezone', vars_array)){
var['timezone'] = "2.00";
}
etc etc...
Just a thought.