From: Sean Murphy Date: Sat, 7 Feb 2009 16:10:46 +0000 (-0500) Subject: Fixed references to common_avatar_*. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=805560677bc66a58c270551fa54b613642b3af97;p=quix0rs-gnu-social.git Fixed references to common_avatar_*. --- diff --git a/lib/imagefile.php b/lib/imagefile.php index a8e9633708..ea24029a30 100644 --- a/lib/imagefile.php +++ b/lib/imagefile.php @@ -121,11 +121,11 @@ class ImageFile && $w === $this->width && $h === $this->height) { - $outname = common_avatar_filename($this->id, + $outname = Avatar::filename($this->id, image_type_to_extension($this->type), $size, common_timestamp()); - $outpath = common_avatar_path($outname); + $outpath = Avatar::path($outname); @copy($this->filepath, $outpath); return $outname; }