sarvan75 / yii-user-management

Automatically exported from code.google.com/p/yii-user-management
0 stars 0 forks source link

YUM Installation generate a wrong user module configuration #174

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Create a Yii WebApp and Install YUM using custom name tables.
2. After Install YUM, Installer generate a new module configuration to save in 
main.php

What is the expected output? What do you see instead?
Expected:
       'modules'=> array(
        [...]
        'user' => array(
            'debug' => false,
            'usersTable' => 'usuarios',
            'translationTable' => 'traducciones',
        ),
        [...]
    ),
I see:
       'modules'=> array(
        [...]
        'user' => array(
            'debug' => false,
            'userTable' => 'usuarios',
            'translationTable' => 'traducciones',
        ),
        [...]
    ),
What version of the product are you using? On what operating system?
Yii 1.1.8, YUM r417. Windows XP SP 3 with XAMPP 1.7.1

Original issue reported on code.google.com by jacko87 on 3 Dec 2011 at 5:06