diff options
author | z0rglub <z0rglub@piwigo.org> | 2004-01-29 21:18:53 +0000 |
---|---|---|
committer | z0rglub <z0rglub@piwigo.org> | 2004-01-29 21:18:53 +0000 |
commit | ee8227a3cebad5440ba023fd235f87644cb2f2d3 (patch) | |
tree | 532f491a23c00cf83af79ba3361386fb666a71e0 /admin/user_list.php | |
parent | 1136e871818a420b50e8d4819517970be7f71525 (diff) |
Php Warning correction
git-svn-id: http://piwigo.org/svn/branches/release-1_3@328 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | admin/user_list.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/user_list.php b/admin/user_list.php index 2f20a2795..4a5588743 100644 --- a/admin/user_list.php +++ b/admin/user_list.php @@ -230,7 +230,7 @@ else $result = mysql_query( $query ); while ( $row = mysql_fetch_array( $result ) ) { - if ( $_POST['mail-'.$row['id']] == 1 ) + if ( isset( $_POST['mail-'.$row['id']] ) ) array_push( $mails, $row['mail_address'] ); } $mail_destination = ''; |