aboutsummaryrefslogtreecommitdiffstats
path: root/admin/waiting.php
diff options
context:
space:
mode:
authorz0rglub <z0rglub@piwigo.org>2004-01-24 22:57:36 +0000
committerz0rglub <z0rglub@piwigo.org>2004-01-24 22:57:36 +0000
commite39dc7c0ab3aef034bd5b8720b2b7ea1a21f96a7 (patch)
treee76950d656d2d9ce47c96bcd9ca726297b6baebc /admin/waiting.php
parentc882b2691591950624a6553811fdeda91aa50b04 (diff)
Php Warnings correction
git-svn-id: http://piwigo.org/svn/branches/release-1_3@319 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/waiting.php')
-rw-r--r--admin/waiting.php2
1 files changed, 1 insertions, 1 deletions
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'];