holy crap, file_put_contents got args in wrong order

This commit is contained in:
Mikael Nordfeldth 2015-01-18 02:57:08 +01:00
parent 5d9e9aaaf5
commit d492b74e42
1 changed files with 1 additions and 1 deletions

View File

@ -1270,7 +1270,7 @@ class Ostatus_profile extends Managed_DataObject
throw new ServerException(sprintf(_m('Unable to fetch avatar from %s.'), $url));
}
// FIXME: make sure it's an image here instead of _after_ writing to a file?
file_put_contents($response->getBody(), $temp_filename);
file_put_contents($temp_filename, $response->getBody());
if ($this->isGroup()) {
$id = $this->group_id;