diff options
author | Bharat Mediratta <bharat@menalto.com> | 2008-11-27 22:08:00 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2008-11-27 22:08:00 +0000 |
commit | bc210a708ed90d521521dec0415586468ca7e0e0 (patch) | |
tree | 79e13337f74ec082d4d640b1432baaf422fc08ea | |
parent | 8d4bd0c81465954ed8608c64f52c1281aa01f45d (diff) |
Set resize to 640x480 for now to avoid breaking the default theme layout
-rw-r--r-- | core/helpers/photo.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/helpers/photo.php b/core/helpers/photo.php index 2a64ff55..46a33b56 100644 --- a/core/helpers/photo.php +++ b/core/helpers/photo.php @@ -75,7 +75,7 @@ class photo_Core { // @todo: parameterize these dimensions // This saves the photo a second time, which is unfortunate but difficult to avoid. return $photo->set_thumbnail($filename, 200, 140) - ->set_resize($filename, 800, 600) + ->set_resize($filename, 640, 480) ->save(); } } |