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
This commit is contained in:
rvelices
2012-02-12 10:02:59 +00:00
parent 9469de7482
commit a1833e40a2
9 changed files with 12 additions and 35 deletions
+2 -4
View File
@@ -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,