mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-06-02 04:15:05 +02:00
related to #1693 no undefined variables in batch manager
This commit is contained in:
committed by
plegall
parent
aeb1d2b80b
commit
8ec890bdb7
@@ -222,10 +222,10 @@ SELECT
|
|||||||
'FILE_SRC' => DerivativeImage::url(IMG_LARGE, $src_image),
|
'FILE_SRC' => DerivativeImage::url(IMG_LARGE, $src_image),
|
||||||
'LEGEND' => $legend,
|
'LEGEND' => $legend,
|
||||||
'U_EDIT' => get_root_url().'admin.php?page=photo-'.$row['id'],
|
'U_EDIT' => get_root_url().'admin.php?page=photo-'.$row['id'],
|
||||||
'NAME' => htmlspecialchars(@$row['name']),
|
'NAME' => htmlspecialchars(isset($row['name']) ? $row['name'] : ""),
|
||||||
'AUTHOR' => htmlspecialchars(@$row['author']),
|
'AUTHOR' => htmlspecialchars(isset($row['author']) ? $row['author'] : ""),
|
||||||
'LEVEL' => !empty($row['level'])?$row['level']:'0',
|
'LEVEL' => !empty($row['level'])?$row['level']:'0',
|
||||||
'DESCRIPTION' => htmlspecialchars(@$row['comment']),
|
'DESCRIPTION' => htmlspecialchars(isset($row['comment']) ? $row['comment'] : ""),
|
||||||
'DATE_CREATION' => $row['date_creation'],
|
'DATE_CREATION' => $row['date_creation'],
|
||||||
'TAGS' => $tag_selection,
|
'TAGS' => $tag_selection,
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user