Skip to content

Commit

Permalink
Update listbounces.php
Browse files Browse the repository at this point in the history
Added curly brackets
  • Loading branch information
lwcorp authored Mar 9, 2024
1 parent b11e87f commit 83cab50
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions public_html/lists/admin/listbounces.php
Original file line number Diff line number Diff line change
Expand Up @@ -103,10 +103,11 @@
if ($download) {
echo $userdata['email']."\n";
} else {
if ($userdata['confirmed'] && !isBlackListed(htmlspecialchars($userdata['email'])))
if ($userdata['confirmed'] && !isBlackListed(htmlspecialchars($userdata['email']))) {
$ls_confirmed = $GLOBALS['img_tick'];
else
} else {
$ls_confirmed = $GLOBALS['img_cross'];
}
$ls->addElement($row['userid'], PageUrl2('user&id='.$row['userid']));
$ls->addColumn($row['userid'], s('Subscriber address'), PageLink2('user&id='.$row['userid'], $userdata['email']) . ' ' . $ls_confirmed);
$ls->addColumn($row['userid'], s('Total bounces'),
Expand Down

0 comments on commit 83cab50

Please sign in to comment.