How can i get the current event calendar to show which day of the week it is. The output just shows that e.g(Groundhog day)as in it is all week until it pases, can you get it to say (Friday: Groundhog Day) as in it is friday of this week.
The code looks like this in SSI.php if (!empty($context['calendar_holidays']))
echo '
<span style="color: #' . $modSettings['cal_holidaycolor'] . ';"> '. $txt['calendar5'] . ' ' . implode(', ', $context['calendar_holidays']) . '<br /></span>';
All this out puts is " Groundhog Day "
I want it to say " Friday: Groundhog Day "
Can anyone help?