diff options
author | Christian Weber | 2007-09-19 16:39:14 +0000 |
---|---|---|
committer | Christian Weber | 2007-09-19 16:39:14 +0000 |
commit | d0d66a94138d61dcd700380f584a85a483c184fe (patch) | |
tree | f27ba4016f00b95e2f307889fb4091a817b089d7 /it_user.class | |
parent | 28a71c4111d1b010ca26e1ab051dd4f1bf98fe66 (diff) | |
download | itools-d0d66a94138d61dcd700380f584a85a483c184fe.tar.gz itools-d0d66a94138d61dcd700380f584a85a483c184fe.tar.bz2 itools-d0d66a94138d61dcd700380f584a85a483c184fe.zip |
new it_dbi always adds defaults from singleton
Diffstat (limited to 'it_user.class')
-rw-r--r-- | it_user.class | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/it_user.class b/it_user.class index 30033e9..4bafc85 100644 --- a/it_user.class +++ b/it_user.class @@ -73,7 +73,7 @@ function it_user($p) ); # Default to uid being primary key, may change later - $this->it_dbi(array('table' => $this->p['table'], 'keyfield' => $this->p['uid_field']) + (array)$GLOBALS['it_dbi']->_defaults); + $this->it_dbi(array('table' => $this->p['table'], 'keyfield' => $this->p['uid_field'])); $this->session = new it_session; $this->status = _IT_USER_STATUS_INVALID; |