In Table view not the weekend signed pink colour, but Friday and Saturday.
At the Date and time settings at the First day of week is Monday was set.

I hope this is a little funy accident in the code.. Pls somebody solve it!

Comments

karens’s picture

Project: Calendar » Event
Version: 6.x-2.1 » 6.x-2.x-dev

If you have a 'table' view and a pink background, you are using the Event module calendar, not the calendar created by Calendar module.

I would suggest adding a lot more information about what is going on if you want a solution.

killes@www.drop.org’s picture

Status: Active » Closed (won't fix)

No info forthcoming.

mreggie’s picture

I have a similar problem:
In the Event's Table view, Fridays have a pink bankground and Saturdays and Sundays look like weekdays.
If I look at the HTML source, the class for the table cell seems to be off by a day:
Friday November 6 has class="nov sat", while Saturday November 7 has class="nov " (i.e. no day of the week).

<tr class="even"><td colspan="3" class="nov sat" id="nov"><div class="day"><em>11</em> / <em>6</em></div>
<div class="event-empty"></div>
</td> </tr>
 <tr class="odd"><td colspan="3" class="nov " id="nov"><div class="day"><em>11</em> / <em>7</em></div>
<div class="event-empty"></div>
</td> </tr>

The problem seems to be fixed by changing event.module line 796

    $dow = _event_day_of_week($cur_date) + 1;

to

    $dow = _event_day_of_week($cur_date);

I'm running with this fix now:

 <tr class="even"><td colspan="3" class="nov fri" id="nov"><div class="day"><em>11</em> / <em>6</em></div>
<div class="event-empty"></div>
</td> </tr>
 <tr class="odd"><td colspan="3" class="nov sat" id="nov"><div class="day"><em>11</em> / <em>7</em></div>
<div class="event-empty"></div>
</td> </tr>
 <tr class="even"><td colspan="3" class="nov sun" id="nov"><div class="day"><em>11</em> / <em>8</em></div>
<div class="event-empty"></div>
</td> </tr>
mreggie’s picture

Status: Closed (won't fix) » Active
Benwick’s picture

Assigned: Benwick » Unassigned

After more then a year i don't use Event, because i Date & Calendar combo mutch better.

japerry’s picture

Status: Active » Closed (outdated)

Event for Drupal 8 is unrelated to older versions. If an issue similar to this one exists, please open a new issue with the 8.x branch.