PHP Classes

user_add()

Recommend this page to a friend!

      PHPBB 3 Integration class  >  All threads  >  user_add()  >  (Un) Subscribe thread alerts  
Subject:user_add()
Summary:Changes
Messages:1
Author:William Lang
Date:2008-09-18 15:41:56
 

  1. user_add()   Reply   Report abuse  
Picture of William Lang 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.