diff options
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 | ||