Skip to content

Commit

Permalink
add 'src' for default facebook-php-sdk path
Browse files Browse the repository at this point in the history
  • Loading branch information
JamieKitson committed Jan 18, 2013
1 parent b497004 commit 613ebdf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion getFeed.php
Expand Up @@ -5,7 +5,7 @@
// It seems that to page through newer statuses you have to use both until and since parameters.

//uses the PHP SDK. Download from https://github.com/facebook/php-sdk
require 'facebook-php-sdk/facebook.php';
require 'facebook-php-sdk/src/facebook.php';

$f = file('secret.php');
$secret = trim($f[1]);
Expand Down
2 changes: 1 addition & 1 deletion getUserId.php
@@ -1,7 +1,7 @@
<?php

//uses the PHP SDK. Download from https://github.com/facebook/php-sdk
require 'facebook-php-sdk/facebook.php';
require 'facebook-php-sdk/src/facebook.php';

$f = file('secret.php');
$secret = trim($f[1]);
Expand Down

0 comments on commit 613ebdf

Please sign in to comment.