From a1833e40a2d81135bf72fb59abeb76c39030d5a5 Mon Sep 17 00:00:00 2001 From: rvelices Date: Sun, 12 Feb 2012 10:02:59 +0000 Subject: 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 --- include/category_default.inc.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'include/category_default.inc.php') 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, -- cgit v1.2.3