remove other occurrences of file_get_contents() being used to fetch urls

This commit is contained in:
friendica 2012-12-13 20:14:24 -08:00
parent cfec3b3099
commit 1d233755b4
6 changed files with 4 additions and 4 deletions

View file

@ -239,7 +239,7 @@ function fbpost_content(&$a) {
$page_access_token = get_pconfig(local_user(),'facebook','page_access_token');
$fb_token = get_pconfig($a->user['uid'],'facebook','access_token');
$url = 'https://graph.facebook.com/me/accounts';
$x = file_get_contents($url."?access_token=".$fb_token);
$x = fetch_url($url."?access_token=".$fb_token);
$accounts = json_decode($x);
$o .= t("Post to page/group:")."<select name='post_to_page'>";
@ -257,7 +257,7 @@ function fbpost_content(&$a) {
}
$url = 'https://graph.facebook.com/me/groups';
$x = file_get_contents($url."?access_token=".$fb_token);
$x = fetch_url($url."?access_token=".$fb_token);
$groups = json_decode($x);
foreach($groups->data as $group) {