Changeset 16936


Ignore:
Timestamp:
Jul 23, 2012, 3:52:32 PM (12 years ago)
Author:
plg
Message:

merge r16934 from branch 2.4 to trunk

bug 2705 fixed: if the rotation is "0", no rotation is needed, we skip the
rotate function which behaves badly (in ExtIM) with a zero degree rotation.

File:
1 edited

Legend:

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

    r16230 r16936  
    134134    $this->image->resize($resize_dimensions['width'], $resize_dimensions['height']);
    135135
    136     if (isset($rotation))
     136    if (!empty($rotation))
    137137    {
    138138      $this->image->rotate($rotation);
Note: See TracChangeset for help on using the changeset viewer.