Skip to content

Commit

Permalink
修正一个低级编码错误;
Browse files Browse the repository at this point in the history
  • Loading branch information
rainbowsoft committed Aug 27, 2024
1 parent de90692 commit 1b256fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zb_system/function/lib/thumb.php
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ protected function clip($clipx, $clipy, $clip_width, $clip_height)
imagefill($this->tmpRes, 0, 0, 0xffffff);
}

imagecopyresampled($this->tmpRes, $this->srcRes, 0, 0, $clipx, $clipy, $this->srcWidth, $this->srcHeight, $this->, $this->srcHeight);
imagecopyresampled($this->tmpRes, $this->srcRes, 0, 0, $clipx, $clipy, $this->srcWidth, $this->srcHeight, $this->srcWidth, $this->srcHeight);
}

/**
Expand Down

0 comments on commit 1b256fc

Please sign in to comment.