aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--index.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/index.php b/index.php
index f8337d79..dbb76d3f 100644
--- a/index.php
+++ b/index.php
@@ -522,7 +522,8 @@ function renderPage($conf, $pluginManager, $bookmarkService, $history, $sessionM
522 522
523 // Daily page. 523 // Daily page.
524 if ($targetPage == Router::$PAGE_DAILY) { 524 if ($targetPage == Router::$PAGE_DAILY) {
525 header('Location: ./daily'); 525 $dayParam = !empty($_GET['day']) ? '?day=' . escape($_GET['day']) : '';
526 header('Location: ./daily'. $dayParam);
526 exit; 527 exit;
527 } 528 }
528 529