mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-03-28 17:42:57 +01:00
Php Warning correction
git-svn-id: http://piwigo.org/svn/branches/release-1_3@328 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -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 = '';
|
||||
|
||||
Reference in New Issue
Block a user