Skip to:
Content

BuddyPress.org

Changeset 3492


Ignore:
Timestamp:
11/28/2010 05:06:56 PM (13 years ago)
Author:
boonebgorges
Message:

Don't upsize small blog images in activity stream. Fixes #2022

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-activity.php

    r3480 r3492  
    992992
    993993            $ratio = (int)$width / (int)$height;
    994             $new_height = 100;
     994            $new_height = (int)$height >= 100 ? 100 : $height;
    995995            $new_width = $new_height * $ratio;
    996996
Note: See TracChangeset for help on using the changeset viewer.