Inherit post date when rotating images

This commit is contained in:
Jessica Stokes 2022-03-20 22:47:13 -07:00
parent 6bc1ec4f81
commit 5c79e05f08

View File

@ -174,6 +174,7 @@ class RotateImage extends Extension
$new_image->filename = 'rotated-'.$image_obj->filename;
$new_image->width = $new_width;
$new_image->height = $new_height;
$new_image->posted = $image_obj->posted;
/* Move the new image into the main storage location */
$target = warehouse_path(Image::IMAGE_DIR, $new_image->hash);