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 profile module configuration #176

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(
        [...]
        'profile' => array(
            'privacySettingTable' => 'privacidad',
            'profileFieldsTable' => 'perfil_campos',
            'profileTable' => 'perfiles',
            'profileCommentTable' => 'perfil_comentarios',
            'profileVisitTable' => 'perfil_visitas',
        ),
        [...]
    ),
I see:
       'modules'=> array(
        [...]
        'profile' => array(
            'privacySettingTable' => 'privacidad',
            'profileFieldTable' => 'perfil_campos',
            'profileTable' => 'perfiles',
            'profileCommentTable' => 'perfil_comentarios',
            'profileVisitTable' => 'perfil_visitas',
        ),
        [...]
    ),
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:16