Fix a bug where cropping an image swaps the X and Y positions. Fixes bug #12413

This commit is contained in:
Colin Kuskie 2013-03-20 15:37:42 -07:00
parent a1c7db7388
commit 52843ad7ca
2 changed files with 2 additions and 1 deletions

View file

@ -1,6 +1,7 @@
7.10.28
- fixed: Clearing the caches for groups that don't exist, but have created group objects.
- fixed #12398: WebGUI still uses Clone (missed Spectre code)
- fixed #12413: Cropping problem or bug?
7.10.27
- fixed #12379: userImport documentation error

View file

@ -748,8 +748,8 @@ sub www_crop {
$newSelf->get("filename"),
$session->form->process("Width"),
$session->form->process("Height"),
$session->form->process("Left"),
$session->form->process("Top"),
$session->form->process("Left")
);
$self = $newSelf;
$self->generateThumbnail;