Skip to content

Commit 2d9df0c

Browse files
committed
Fix strftime in details.php
1 parent 4363d3c commit 2d9df0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

html/details.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -845,7 +845,7 @@ function DisplayDetails () {
845845
print "<tr><td>Max:</td><td>$maxsize</td></tr>";
846846
print "<tr><td>Exp:</td><td>$expire</td></tr>";
847847
print "<tr><td>Start:</td><td>$str</td></tr>\n";
848-
$str = strftime("%b %d %Y - %H:%M", $_SESSION['profileinfo']['tend']);
848+
$str = date('M d Y - H:i T', $_SESSION['profileinfo']['tend']);
849849
print "<tr><td>End:</td><td>$str</td></tr>\n";
850850
print "</table>\n";
851851

0 commit comments

Comments
 (0)