projects
/
project/fb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
2e0d8b2
)
return uid, not entire account object.
6.x-3.1
author
Dave Cohen
Wed, 21 Sep 2011 17:30:11 +0000 (10:30 -0700)
committer
Dave Cohen
Wed, 21 Sep 2011 17:30:11 +0000 (10:30 -0700)
fb_user.module
patch
|
blob
|
blame
|
history
diff --git
a/fb_user.module
b/fb_user.module
index
287ecf1
..
b4ff070
100644
(file)
--- a/
fb_user.module
+++ b/
fb_user.module
@@
-175,7
+175,7
@@
function fb_user_fb($op, $data, &$return) {
}
elseif ($op == FB_OP_GET_UID) {
// This is a request to learn the facebook user's local id.
- $return = fb_user_get_local_user($data['fbu'], $data['fb_app']);
+ $return = _fb_user_get_uid($data['fbu'], $data['fb_app']);
}
elseif ($op == FB_OP_AJAX_EVENT) {
// fb.js has notified us of an event via AJAX. Not the same as facebook event callback above.