summaryrefslogtreecommitdiff
path: root/extlib/facebook/facebook.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2009-07-16 00:27:23 -0400
committerEvan Prodromou <evan@controlyourself.ca>2009-07-16 00:27:23 -0400
commit3c2006eb13ece3cc22a4d0a80716c9e74a677f14 (patch)
treee0e46e054f1888d1dbf36ee1c7489c5aa4d7ab3c /extlib/facebook/facebook.php
parent83cbf246a871edc8da34a742af3b0ea37e100688 (diff)
parent87a9fe6013137e95aad5f4fbb83a9b5d76543e26 (diff)
Merge branch '0.8.x' of git@gitorious.org:laconica/mainline into 0.8.x
Diffstat (limited to 'extlib/facebook/facebook.php')
-rw-r--r--extlib/facebook/facebook.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/extlib/facebook/facebook.php b/extlib/facebook/facebook.php
index fee1dd086..016e8e8e0 100644
--- a/extlib/facebook/facebook.php
+++ b/extlib/facebook/facebook.php
@@ -107,13 +107,13 @@ class Facebook {
* @param bool resolve_auth_token convert an auth token into a session
*/
public function validate_fb_params($resolve_auth_token=true) {
- $this->fb_params = $this->get_valid_fb_params($_POST, 48*3600, 'fb_sig');
+ $this->fb_params = $this->get_valid_fb_params($_POST, 48 * 3600, 'fb_sig');
// note that with preload FQL, it's possible to receive POST params in
// addition to GET, so use a different prefix to differentiate them
if (!$this->fb_params) {
- $fb_params = $this->get_valid_fb_params($_GET, 48*3600, 'fb_sig');
- $fb_post_params = $this->get_valid_fb_params($_POST, 48*3600, 'fb_post_sig');
+ $fb_params = $this->get_valid_fb_params($_GET, 48 * 3600, 'fb_sig');
+ $fb_post_params = $this->get_valid_fb_params($_POST, 48 * 3600, 'fb_post_sig');
$this->fb_params = array_merge($fb_params, $fb_post_params);
}