Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Typo in README.md #55

Open
deanc opened this issue Jun 30, 2015 · 1 comment
Open

Typo in README.md #55

deanc opened this issue Jun 30, 2015 · 1 comment

Comments

@deanc
Copy link

deanc commented Jun 30, 2015

'userColumns' = array(
    'id' => 'id',
    'email' => 'email',
    'password' => 'password',
    'salt' => 'salt',
    'roles' => 'roles',
    'name' => 'name',
    'time_created' => 'time_created',
    'username' => 'username',
    'isEnabled' => 'isEnabled',
    'confirmationToken' => 'confirmationToken',
    'timePasswordResetRequested' => 'timePasswordResetRequested',
    //Custom Fields
    'user_id' => 'user_id',
    'attribute' => 'attribute',
    'value' => 'value',
),

Should be:

'userColumns' => array(
    'id' => 'id',
    'email' => 'email',
    'password' => 'password',
    'salt' => 'salt',
    'roles' => 'roles',
    'name' => 'name',
    'time_created' => 'time_created',
    'username' => 'username',
    'isEnabled' => 'isEnabled',
    'confirmationToken' => 'confirmationToken',
    'timePasswordResetRequested' => 'timePasswordResetRequested',
    //Custom Fields
    'user_id' => 'user_id',
    'attribute' => 'attribute',
    'value' => 'value',
),

Incorrect array key assignment operator :)

@deanc
Copy link
Author

deanc commented Jun 30, 2015

I'll try and PR this if I remember ;-)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant