Home » Authentication » LiveUser » Bug #9517
Config Parameter permContainer=>storage=>PDO=>prefix doesn't work
Details
| Submitted | 2006-12-01 14:10 UTC |
|---|---|
| From | david dot lippi at softecspa dot it |
| Assigned | dufuz |
| Status | Closed |
| Package | LiveUser |
| PHP Version | 5.1.2 |
| OS | Red Hat Linux |
| Roadmaps | (Not assigned) |
Comments
[2006-12-01 14:10 UTC] david dot lippi at softecspa dot it
Description:
------------
The package ever use the default value for db table prefix (liveuser_). The conf parameter used to set a personal prefix doesn't work.
Test script:
---------------
...
'permContainer' => array(
'type' => 'Complex',
'storage' => array(
'PDO' => array(
'dsn' => $DSN
, 'prefix' => 'lu_'
, 'tables' => array()
, 'fields' => array()
, 'alias' => array()
)
)
)
..