PEAR is archived and read-only

This mirror preserves historical PEAR package releases and metadata so existing references remain available.

Home » Authentication » LiveUser » Bug #9517

Config Parameter permContainer=>storage=>PDO=>prefix doesn't work

Details

Submitted2006-12-01 14:10 UTC
Fromdavid dot lippi at softecspa dot it
Assigneddufuz
StatusClosed
PackageLiveUser
PHP Version5.1.2
OSRed 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()
)
)
)
..