Changeset 17004


Ignore:
Timestamp:
Jul 25, 2012, 12:32:34 PM (12 years ago)
Author:
plg
Message:

merge r17003 from branch 2.4 to trunk

bug 2705 (related to): if rotate function is called with a 0 (zero) angle,
like plugin RotateImage may do, ExtIM fails with the same error
"convert: invalid argument for option `-rotate': -orient"

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/admin/include/image.class.php

    r16936 r17004  
    560560  function rotate($rotation)
    561561  {
     562    if (empty($rotation))
     563    {
     564      return true;
     565    }
     566
    562567    if ($rotation==90 || $rotation==270)
    563568    {
Note: See TracChangeset for help on using the changeset viewer.