Skip to content

Commit

Permalink
Fix strftime in details.php
Browse files Browse the repository at this point in the history
  • Loading branch information
phaag committed Dec 10, 2022
1 parent 4363d3c commit 2d9df0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion html/details.php
Original file line number Diff line number Diff line change
Expand Up @@ -845,7 +845,7 @@ function DisplayDetails () {
print "<tr><td>Max:</td><td>$maxsize</td></tr>";
print "<tr><td>Exp:</td><td>$expire</td></tr>";
print "<tr><td>Start:</td><td>$str</td></tr>\n";
$str = strftime("%b %d %Y - %H:%M", $_SESSION['profileinfo']['tend']);
$str = date('M d Y - H:i T', $_SESSION['profileinfo']['tend']);
print "<tr><td>End:</td><td>$str</td></tr>\n";
print "</table>\n";

Expand Down

0 comments on commit 2d9df0c

Please sign in to comment.