Skip to content

Commit

Permalink
Merge pull request #1315 from pi-hole/teleporter-24h
Browse files Browse the repository at this point in the history
Fix teleporter to use the 24-hour format.
  • Loading branch information
PromoFaux authored May 17, 2020
2 parents 7d409ad + 70d2b62 commit 12d8f73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/pi-hole/php/teleporter.php
Original file line number Diff line number Diff line change
Expand Up @@ -540,7 +540,7 @@ function process_file($contents)
}
else
{
$tarname = "pi-hole-teleporter_".date("Y-m-d_h-i-s").".tar";
$tarname = "pi-hole-teleporter_".date("Y-m-d_H-i-s").".tar";
$filename = $tarname.".gz";
$archive_file_name = sys_get_temp_dir() ."/". $tarname;
$archive = new PharData($archive_file_name);
Expand Down

0 comments on commit 12d8f73

Please sign in to comment.