Commit 9b48bb23 authored by Micheal Mand's avatar Micheal Mand

Fix #583: `activated` vs `is_activated`

Thank you to @chiragpipariya for his initial fix in #586.
parent c9543041
......@@ -260,7 +260,7 @@ class SentinelUserRepository implements UserRepository
*/
private function checkForManualActivation($user, array &$data)
{
if (Activation::completed($user) && !$data['activated']) {
if (Activation::completed($user) && !$data['is_activated']) {
return Activation::remove($user);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment