diff options
author | rvelices <rv-github@modusoptimus.com> | 2012-02-12 10:02:59 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2012-02-12 10:02:59 +0000 |
commit | a1833e40a2d81135bf72fb59abeb76c39030d5a5 (patch) | |
tree | 9f59387fdb86711cb1b65d9b695b106eea96fd5c /include/category_default.inc.php | |
parent | 9469de7482d3ddf7f02b9a17c2c5d3c18f9f205a (diff) |
improvement of picture title on picture page, drop boxes on index page ...
sharpening uses a zider scale range
git-svn-id: http://piwigo.org/svn/trunk@13115 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | include/category_default.inc.php | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/include/category_default.inc.php b/include/category_default.inc.php index 454d1e1e5..444ffd826 100644 --- a/include/category_default.inc.php +++ b/include/category_default.inc.php @@ -37,7 +37,7 @@ $selection = array_slice( if (count($selection) > 0) { - $rank_of = array_flip($page['items']); + $rank_of = array_flip($selection); $query = ' SELECT * @@ -48,8 +48,7 @@ SELECT * while ($row = pwg_db_fetch_assoc($result)) { $row['rank'] = $rank_of[ $row['id'] ]; - - array_push($pictures, $row); + $pictures[] = $row; } usort($pictures, 'rank_compare'); @@ -113,7 +112,6 @@ foreach ($pictures as $row) $desc = render_element_description($row); $tpl_var = array_merge( $row, array( - 'TN_SRC' => DerivativeImage::thumb_url($row), 'TN_ALT' => htmlspecialchars(strip_tags($name)), 'TN_TITLE' => get_thumbnail_title($row, $name, $desc), 'URL' => $url, |