Skip to content

Commit

Permalink
Merge pull request #157 from enrique-ibarra/patch-1
Browse files Browse the repository at this point in the history
Updated FB.php
  • Loading branch information
webtechnick committed May 5, 2014
2 parents cbc973a + 417fd6e commit 79934b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Lib/FB.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* @license MIT
*/

App::uses('facebook', 'Facebook.Vendor');
App::uses('Facebook', 'Facebook.Vendor');
App::uses('FacebookInfo', 'Facebook.Lib');
class FB {

Expand Down Expand Up @@ -63,7 +63,7 @@ public function __get($name){
public static function __callstatic($method, $params){
try {
if (empty(self::$Facebook)) {
$this->__initInstance();
self::__initInstance();
}
return call_user_func_array(array(self::$Facebook, $method), $params);
} catch (FacebookApiException $e) {
Expand Down

0 comments on commit 79934b0

Please sign in to comment.