Skip to content

Commit

Permalink
Fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
endelwar committed Apr 18, 2018
1 parent 1dd0df3 commit 0e310c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mailscanner/geoip_update.php
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@
unlink($file['destination']);
unlink(substr($file['destination'], 0, -3));

foreach (New DirectoryIterator($extract_dir) as $item) {
foreach (new DirectoryIterator($extract_dir) as $item) {
if ($item->isDot()) {
continue;
}
Expand Down
2 changes: 1 addition & 1 deletion tools/Cron_jobs/mailwatch_geoip_update.php
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@
unlink($file['destination']);
unlink(substr($file['destination'], 0, -3));

foreach (New DirectoryIterator($extract_dir) as $item) {
foreach (new DirectoryIterator($extract_dir) as $item) {
if ($item->isDot()) {
continue;
}
Expand Down

0 comments on commit 0e310c2

Please sign in to comment.