From e39dc7c0ab3aef034bd5b8720b2b7ea1a21f96a7 Mon Sep 17 00:00:00 2001 From: z0rglub Date: Sat, 24 Jan 2004 22:57:36 +0000 Subject: Php Warnings correction git-svn-id: http://piwigo.org/svn/branches/release-1_3@319 68402e56-0260-453c-a942-63ccdbb3a9ee --- admin/waiting.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'admin/waiting.php') diff --git a/admin/waiting.php b/admin/waiting.php index 9a5e79481..6abf119de 100644 --- a/admin/waiting.php +++ b/admin/waiting.php @@ -116,7 +116,7 @@ while ( $row = mysql_fetch_array( $result ) ) // file name $vtp->setVar( $sub, 'picture.file', $row['file'] ); // is there an existing associated thumnail ? - if ( $row['tn_ext'] != '' ) + if ( isset( $row['tn_ext'] ) and $row['tn_ext'] != '' ) { $vtp->addSession( $sub, 'thumbnail' ); $thumbnail = $conf['prefix_thumbnail']; -- cgit v1.2.3