Home » Authentication » LiveUser » Bug #636
LiveUser_Admin_Auth_Container_DB var $name is not assigned
Details
| Submitted | 2004-01-28 12:03 UTC |
|---|---|
| From | banshee at netcetera dot pl |
| Assigned | lsmith |
| Status | Closed |
| Package | LiveUser |
| PHP Version | 4.3.3 |
| OS | linux |
| Roadmaps | (Not assigned) |
Comments
[2004-01-28 12:03 UTC] banshee at netcetera dot pl
Description:
------------
when trying:
// $conf = array ( .. ,'name' => 'DB_Local', ...)
$auth = new LiveUser_Admin_Auth_Container_DB($conf)
The $auth->name is not set.
Probably due to :
var $name = null //in LiveUser_Admin_Auth_Common
and in LiveUser_Admin_Auth_Container_DB()
if (is_array($connectOptions)) {
foreach($connectOptions as $key => $value)
{ if (isset($this->$key)) { // $this->name = null
$this->$key = $value; //so its not assigned
}
}....