Skip to content

Commit

Permalink
Filter out special key images by default.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrubinsk committed Aug 16, 2014
1 parent f5112a8 commit 94ccdc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ansel/lib/Storage.php
Original file line number Diff line number Diff line change
Expand Up @@ -1122,7 +1122,7 @@ public function listImages(array $params = array())
} elseif ($params['gallery_id']) {
$query_where = 'WHERE gallery_id = ' . $params['gallery_id'];
} else {
$query_where = '';
$query_where = 'WHERE gallery_id > 0';
}
if ($params['filter']) {
foreach ($params['filter'] as $filter) {
Expand Down

0 comments on commit 94ccdc1

Please sign in to comment.