diff options
Diffstat (limited to 'template/overview.phtml')
-rw-r--r-- | template/overview.phtml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/template/overview.phtml b/template/overview.phtml index 8e210eb..e9cee8e 100644 --- a/template/overview.phtml +++ b/template/overview.phtml @@ -72,12 +72,12 @@ <? $upcoming = @$upcomingTalksPerRoom[ $room->getScheduleName() ] ?: [] ?> <div class="program-schedule"> <div class="talk current-talk" title="<?=h(@$upcoming['current']['title'] ?: 'none') ?>"> - <strong>Now:</strong> + <strong>Now (since <?=date('G:i', @$upcoming['current']['start']) ?>):</strong><br/> <span class="t"><?=h(@$upcoming['current']['title'] ?: 'none') ?></span> </div> <div class="talk next-talk" title="<?=h(@$upcoming['next']['title'] ?: 'none') ?>"> - <strong>Next Talk:</strong> + <strong>Next Talk (<?=date('G:i', @$upcoming['next']['start']) ?>):</strong><br/> <span class="t"><?=h(@$upcoming['next']['title'] ?: 'none') ?></span> </div> </div> |