Home » Authentication » LiveUser » Bug #790
Notice in LiveUser_Admin_Auth_Container_DB constructor
Details
| Submitted | 2004-02-18 21:18 UTC |
|---|---|
| From | jmf at dyingculture dot net |
| Status | Bogus |
| Package | LiveUser |
| PHP Version | 4.3.4 |
| OS | Mandrake 9.1 |
| Roadmaps | (Not assigned) |
Comments
[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'];
}