mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-06-02 04:15:05 +02:00
Php Warning correction
git-svn-id: http://piwigo.org/svn/branches/release-1_3@338 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
+1
-1
@@ -49,7 +49,7 @@ function display_pictures( $mysql_result, $maxtime, $validation_box = false )
|
||||
$file = get_filename_wo_extension( $subrow['file'] );
|
||||
// name of the picture
|
||||
$name = $array_cat_names[$subrow['cat_id']].' > ';
|
||||
if ( $subrow['name'] != '' )
|
||||
if ( isset( $subrow['name'] ) and $subrow['name'] != '' )
|
||||
{
|
||||
$name.= $subrow['name'];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user