Skip to content

Commit

Permalink
Fixes bug in SMF\Graphics\Image::move()
Browse files Browse the repository at this point in the history
Signed-off-by: Jon Stovell <[email protected]>
  • Loading branch information
Sesquipedalian committed Nov 13, 2023
1 parent 6fc4954 commit 6961be1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/Graphics/Image.php
Original file line number Diff line number Diff line change
Expand Up @@ -505,7 +505,7 @@ public function move(string $destination): bool
$this->pathinfo = pathinfo($this->source);

// Attempt to chmod it.
@Utils::makeWritable($image->source);
@Utils::makeWritable($this->source);

return true;
}
Expand Down

0 comments on commit 6961be1

Please sign in to comment.