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 role module configuration #173

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(
        [...]
        'role' => array(
            'rolesTable' => 'roles',
            'userRoleTable' => 'usuarios_roles',
            'actionTable' => 'accione',
            'permissionTable' => 'permisos',
        ),
        [...]
    ),
I see:
       'modules'=> array(
        [...]
        'role' => array(
            'roleTable' => 'roles',
            'userHasRoleTable' => 'usuarios_roles',
            'actionTable' => 'accione',
            'permissionTable' => 'permisos',
        ),
        [...]
    ),
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 4:42

GoogleCodeExporter commented 9 years ago
Sorry, this issue is duplicated. Same as issue 172.

Original comment by jacko87 on 3 Dec 2011 at 5:10