From 935222b8b2d9744511cc95b2b5c17f555503582e Mon Sep 17 00:00:00 2001 From: ArthurHoaro Date: Tue, 28 Mar 2017 20:51:11 +0200 Subject: [PATCH] Display daily date in the page title (browser title) Fixes #211 Depends on #838 --- index.php | 1 + 1 file changed, 1 insertion(+) diff --git a/index.php b/index.php index 5c21c2f..259d017 100644 --- a/index.php +++ b/index.php @@ -695,6 +695,7 @@ function showDaily($pageBuilder, $LINKSDB, $conf, $pluginManager) $dayDate = DateTime::createFromFormat(LinkDB::LINK_DATE_FORMAT, $day.'_000000'); $data = array( + 'pagetitle' => $conf->get('general.title') .' - '. format_date($dayDate, false), 'linksToDisplay' => $linksToDisplay, 'cols' => $columns, 'day' => $dayDate->getTimestamp(),