Fixed references to common_avatar_*.

This commit is contained in:
Sean Murphy 2009-02-07 11:10:46 -05:00
parent a3d5e00f64
commit 805560677b
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}