Skip to content
This repository has been archived by the owner on Jan 13, 2022. It is now read-only.

Commit

Permalink
Add space to if statement.
Browse files Browse the repository at this point in the history
  • Loading branch information
techdubb committed Nov 2, 2013
1 parent 73278f7 commit 2e8d65a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/base_facebook.php
Expand Up @@ -1021,7 +1021,7 @@ protected function parseSignedRequest($signed_request) {
$result |= ord($expected_sig[$i]) ^ ord($sig[$i]);
}

if($result == 0) {
if ($result == 0) {
return $data;
} else {
self::errorLog('Bad Signed JSON signature!');
Expand Down

0 comments on commit 2e8d65a

Please sign in to comment.