Package home | Report new bug | New search | Development Roadmap Status: Open | Feedback | All | Closed Since Version 0.16.14

Bug #790 Notice in LiveUser_Admin_Auth_Container_DB constructor
Submitted: 2004-02-18 21:18 UTC
From: jmf at dyingculture dot net Assigned:
Status: Bogus Package: LiveUser
PHP Version: 4.3.4 OS: Mandrake 9.1
Roadmaps: (Not assigned)    
Subscription  


 [2004-02-18 21:18 UTC] jmf at dyingculture dot net
Description: ------------ In the LiveUser_Admin_Auth_Container_DB constructor, you get a notice if you do not specify the configuration parameters "authTable" and "authTableCols" (because you want to use the default values). To avoid this the 2 following lines $this->authTableCols = array_merge($conf['authTableCols'], $this->authTable = $conf['authTable']; should be replaced with these lines if (isset($conf['authTableCols'])) { $this->authTableCols = array_merge($conf['authTableCols'], $this->authTableCols); } if (isset($conf['authTable'])) { $this->authTable = $conf['authTable']; }

Comments

 [2004-02-27 11:07 UTC] lsmith
This piece of code no longer seems to be necessary.