aboutsummaryrefslogtreecommitdiffhomepage
path: root/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'index.php')
-rw-r--r--index.php9
1 files changed, 8 insertions, 1 deletions
diff --git a/index.php b/index.php
index ff42114c..a14616ed 100644
--- a/index.php
+++ b/index.php
@@ -392,9 +392,16 @@ function showDailyRSS($conf, $loginManager)
392 */ 392 */
393function showDaily($pageBuilder, $LINKSDB, $conf, $pluginManager, $loginManager) 393function showDaily($pageBuilder, $LINKSDB, $conf, $pluginManager, $loginManager)
394{ 394{
395 $day = date('Ymd', strtotime('-1 day')); // Yesterday, in format YYYYMMDD.
396 if (isset($_GET['day'])) { 395 if (isset($_GET['day'])) {
397 $day = $_GET['day']; 396 $day = $_GET['day'];
397 if ($day === date('Ymd', strtotime('now'))) {
398 $pageBuilder->assign('dayDesc', t('Today'));
399 } elseif ($day === date('Ymd', strtotime('-1 days'))) {
400 $pageBuilder->assign('dayDesc', t('Yesterday'));
401 }
402 } else {
403 $day = date('Ymd', strtotime('now')); // Today, in format YYYYMMDD.
404 $pageBuilder->assign('dayDesc', t('Today'));
398 } 405 }
399 406
400 $days = $LINKSDB->days(); 407 $days = $LINKSDB->days();