Skip to content

Commit

Permalink
Correct missing "!" after call to -resize/-thumbnail.
Browse files Browse the repository at this point in the history
This was a regression since horde/horde@01a11cc
  • Loading branch information
lamby authored and mrubinsk committed Jun 23, 2018
1 parent 082fccc commit f8c998b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Horde/Image/Im.php
Expand Up @@ -261,7 +261,7 @@ public function resize($width, $height, $ratio = true, $keepProfile = false)
} else {
$this->_postSrcOperations[] =
($keepProfile ? '-resize' : '-thumbnail')
. sprintf(' %dx%d', $width, $height);
. sprintf(' %dx%d!', $width, $height);
}

// Refresh the data
Expand Down

0 comments on commit f8c998b

Please sign in to comment.