summaryrefslogtreecommitdiff
path: root/modules/g2_import/helpers
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2009-05-12 02:12:39 +0000
committerBharat Mediratta <bharat@menalto.com>2009-05-12 02:12:39 +0000
commit61ad68f1e6e77196ac28bca0c57441f0c38ef90b (patch)
treee4db0bb3c68870cb37dbd6afc1714c47c50b7369 /modules/g2_import/helpers
parent5dbe1e59d88f1fdbf301c70176b3ea3702ba0adf (diff)
Deal gracefully with the case that the Gallery 2 instance didn't have
any resizes (or thumbnails). Fix a case where we were over-weighting the max dimension for square resizes and thumbs.
Diffstat (limited to 'modules/g2_import/helpers')
-rw-r--r--modules/g2_import/helpers/g2_import.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/g2_import/helpers/g2_import.php b/modules/g2_import/helpers/g2_import.php
index 3ba37c86..c6ea2cc8 100644
--- a/modules/g2_import/helpers/g2_import.php
+++ b/modules/g2_import/helpers/g2_import.php
@@ -414,7 +414,7 @@ class g2_import_Core {
"FROM [GalleryDerivativeImage], [GalleryDerivative] " .
"WHERE [GalleryDerivativeImage::id] = [GalleryDerivative::id] " .
" AND [GalleryDerivative::derivativeType] = ? " .
- " AND [GalleryDerivativeImage::height] >= [GalleryDerivativeImage::width] " .
+ " AND [GalleryDerivativeImage::height] > [GalleryDerivativeImage::width] " .
"GROUP BY [GalleryDerivativeImage::height] " .
"ORDER by c DESC",
array($g2_enum),