mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-03-28 17:42:57 +01:00
feature #379, multiple format, consider the original as a format
This commit is contained in:
17
picture.php
17
picture.php
@@ -674,10 +674,23 @@ SELECT *
|
||||
|
||||
if (!empty($formats))
|
||||
{
|
||||
// let's add the original as a format among others. It will just have
|
||||
// a specific download URL
|
||||
array_unshift(
|
||||
$formats,
|
||||
array(
|
||||
'download_url' => $picture['current']['download_url'],
|
||||
'ext' => get_extension($picture['current']['file']),
|
||||
'filesize' => $picture['current']['filesize'],
|
||||
)
|
||||
);
|
||||
|
||||
foreach ($formats as &$format)
|
||||
{
|
||||
$format['download_url'] = 'action.php?format='.$format['format_id'];
|
||||
$format['download_url'].= '&download';
|
||||
if (!isset($format['download_url']))
|
||||
{
|
||||
$format['download_url'] = 'action.php?format='.$format['format_id'].'&download';
|
||||
}
|
||||
|
||||
$format['label'] = strtoupper($format['ext']);
|
||||
$lang_key = 'format '.strtoupper($format['ext']);
|
||||
|
||||
Reference in New Issue
Block a user