by espicom » Wed Feb 28, 2007 4:19 pm
What you are describing should not happen in phpBB, because all variables read from the tables are accessed by name - even if you add additional fields to the user record, for example, the variable "username" should point to the user's name field.
Mixing up the fields is something that will happen when accessing table fields by position, rather than name, which will be affected by adding fields to a table. The 14th column in the record does not necessarily point to the same column name, for example. I, unfortunately, have to deal with someone that codes that way, on other projects.