Changeset 1989

Show
Ignore:
Timestamp:
02/07/2008 10:41:00 PM (11 months ago)
Author:
Shadowhand
Message:

wtf was that... bad Shadowhand!

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/system/libraries/drivers/Image/GD.php

    r1988 r1989  
    213213 
    214214                        // The maximum reduction is 10% greater than the final size 
    215                         $max_reduction_width  = round($properties['width']  1.1); 
    216                         $max_reduction_height = round($properties['height'] 1.1); 
     215                        $max_reduction_width  = round($properties['width']  * 1.1); 
     216                        $max_reduction_height = round($properties['height'] * 1.1); 
    217217 
    218218                        // Reduce the size using an O(2n) algorithm, until it reaches the maximum reduction