summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/imagefile.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/imagefile.php b/lib/imagefile.php
index a8e963370..ea24029a3 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;
}