summaryrefslogtreecommitdiff
path: root/manifest.json.php
diff options
context:
space:
mode:
Diffstat (limited to 'manifest.json.php')
-rw-r--r--manifest.json.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/manifest.json.php b/manifest.json.php
index 22ea4cda2..525bc6103 100644
--- a/manifest.json.php
+++ b/manifest.json.php
@@ -79,7 +79,7 @@
foreach ($manifest_files as $f) {
$tmp = filemtime($f);
- if ($tmp > $mtime) {
+ if ($tmp > $mtime_max) {
$mtime_max = $tmp;
}
@@ -89,7 +89,7 @@
{
"betaManifestVersion": 1,
- "version": "<?php echo $mtime_max ?>",
+ "version": "<?php echo date("Y.m.d H:i:s", $mtime_max) ?>",
"entries": [
<?php echo join(",\n ", $manifest_formatted); ?>
]