Skip to content

Commit

Permalink
Merge pull request #22 from crsdR/patch-1
Browse files Browse the repository at this point in the history
Update windowslive.php
  • Loading branch information
Phil Sturgeon committed Oct 1, 2013
2 parents 6923526 + 259fb67 commit 7a4a556
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions classes/provider/windowslive.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public function get_user_info(Token_Access $token)
return array(
'uid' => $user->id,
'name' => $user->name,
'emial' => isset($user->emails->preferred) ? $user->emails->preferred : null,
'email' => isset($user->emails->preferred) ? $user->emails->preferred : null,
'nickname' => \Inflector::friendly_title($user->name, '-', true),
// 'location' => $user->location,
// requires scope wl.postal_addresses and docs here: http://msdn.microsoft.com/en-us/library/hh243648.aspx#user
Expand All @@ -65,4 +65,4 @@ public function get_user_info(Token_Access $token)
),
);
}
}
}

0 comments on commit 7a4a556

Please sign in to comment.