diff --git a/roles/copr/backend/templates/lighttpd/dir-generator.php.j2 b/roles/copr/backend/templates/lighttpd/dir-generator.php.j2
index 53f2964ddb..b149c7606c 100755
--- a/roles/copr/backend/templates/lighttpd/dir-generator.php.j2
+++ b/roles/copr/backend/templates/lighttpd/dir-generator.php.j2
@@ -244,7 +244,7 @@ if($path != "./") {
// Print folder information
foreach($folderlist as $folder) {
print "
" .htmlentities($folder['name']). "/ | ";
- print "" . date('Y-M-d H:m:s', $folder['modtime']) . " | ";
+ print "" . date('Y-M-d H:i:s', $folder['modtime']) . " | ";
print "" . (($calculate_folder_size)?format_bytes($folder['size'], 2):'--') . " | ";
print "" . $folder['file_type'] . " |
";
}
@@ -255,7 +255,7 @@ foreach($folderlist as $folder) {
// Print file information
foreach($filelist as $file) {
print "" .htmlentities($file['name']). " | ";
- print "" . date('Y-M-d H:m:s', $file['modtime']) . " | ";
+ print "" . date('Y-M-d H:i:s', $file['modtime']) . " | ";
print "" . format_bytes($file['size'],2) . " | ";
print "" . $file['file_type'] . " |
";
}