"Show next open day" only works if sunday is the first day of the week. The setting of the field formatter is not taken into account:
<?php
// Are we currently open? If not, when is the next time?
// Remember: empty days are not in $items; they are present in $days.
if ($day <= $today) {
// Initialize to first day of (next) week, in case we're closed
// the rest of the week.
if ($today == 0) {
// Not for sundays, since this is already first day of the week.
}
elseif ($next === NULL) {
$next = $day;
}
}
?>
Fixed
1.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.