summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorilotterytea <iltsu@alright.party>2025-08-05 16:50:32 +0500
committerilotterytea <iltsu@alright.party>2025-08-05 16:50:32 +0500
commit11e99a15810e6f66ce3e78232f026c08a0177b61 (patch)
treeaa82fc4c17244b286fe9697abc3c02e56c3f3250
parenteff7e73e18bb1083744542ecadfe6ce6ca5f1207 (diff)
fix: days were resetted
-rw-r--r--web/index.php3
1 files changed, 0 insertions, 3 deletions
diff --git a/web/index.php b/web/index.php
index 3f4a87f..78312d3 100644
--- a/web/index.php
+++ b/web/index.php
@@ -78,9 +78,6 @@ if (isset($date)) {
if (!array_key_exists($m, $dates[$y])) {
$dates[$y][$m] = [];
}
- if (!array_key_exists($d, $dates[$y][$m])) {
- $dates[$y][$m] = [];
- }
$dates[$y][$m][$d] = $c;
}
}