You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when changing the user isEnabled value to false, will receive sql error "General error: 1366 Incorrect integer value: '' for column 'isEnabled' at row 1"
namely because a string "false" is passed into the sql query instead of int 0.
Changing user_manager class at line 538 to 'isEnabled' => intval($user->isEnabled()), will solve the problem.
The text was updated successfully, but these errors were encountered:
when changing the user isEnabled value to false, will receive sql error "General error: 1366 Incorrect integer value: '' for column 'isEnabled' at row 1"
namely because a string "false" is passed into the sql query instead of int 0.
Changing user_manager class at line 538 to 'isEnabled' => intval($user->isEnabled()), will solve the problem.
The text was updated successfully, but these errors were encountered: