From: Mikael Nordfeldth Date: Sun, 18 Jan 2015 01:57:08 +0000 (+0100) Subject: holy crap, file_put_contents got args in wrong order X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=d492b74e42c80042cc26cb9a0c21f16d80d8bdfd;p=quix0rs-gnu-social.git holy crap, file_put_contents got args in wrong order --- diff --git a/plugins/OStatus/classes/Ostatus_profile.php b/plugins/OStatus/classes/Ostatus_profile.php index 37d3dafa18..2fb869e2f3 100644 --- a/plugins/OStatus/classes/Ostatus_profile.php +++ b/plugins/OStatus/classes/Ostatus_profile.php @@ -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;