Skip to content

Commit a2ffacf

Browse files
bramleySam Tuke
authored andcommitted
Remove unused variable
1 parent f8b799d commit a2ffacf

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

public_html/lists/admin/actions/bounces.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
$bouncels = new WebblerListing(s('Bounces'));
2626
$bouncels->setElementHeading('Bounce ID');
2727
$bouncelist = '';
28-
$bounces = array();
2928
// check for bounces
3029
$req = Sql_Query(sprintf('
3130
select
@@ -46,9 +45,8 @@
4645
PageURL2('bounce', s('view'), 'id=' . $row['bounce']));
4746
$bouncels->addColumn($row['bounce'], s('Campaign title'), stripslashes($messagedata['campaigntitle']));
4847
$bouncels->addColumn($row['bounce'], s('time'), $row['ftime']);
49-
$bounces[$row['message']] = $row['ftime'];
5048
}
5149
echo $bouncels->display();
5250
} else {
5351
echo s("Bounces data not found");
54-
}
52+
}

0 commit comments

Comments
 (0)