Skip to main content

This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.

We've moved the forum!

Please use forum.silverstripe.org for any new questions (announcement).
The forum archive will stick around, but will be read only.

You can also use our Slack channel or StackOverflow to ask for help.
Check out our community overview for more options to contribute.

All other Modules /

Discuss all other Modules here.

Moderators: martimiz, Sean, Ed, biapar, Willr, Ingo, swaiba

Problem installing Event_Calendar


Go to End


12 Posts   3616 Views

Avatar
3dgoo

Community Member, 135 Posts

6 May 2010 at 12:45pm

I had that error too.

This is how I fixed it:
http://www.silverstripe.org/all-other-modules/show/282832#post282835

open \event_calendar\code\CalendarUI.class.php
go to line 117
replace:

public function setAnchorEnd($date)
protected

with:

public function setAnchorEnd($date)
{
	$this->anchor_end = new sfDate(CalendarUtil::getDateToString($date));
}

Avatar
librarywebchic

Community Member, 3 Posts

6 May 2010 at 1:12pm

Thank you so much. I'm relatively new to Silverstripe but REALLY like it so far. Trying to learn the "Silverstripe way of doing things" right now.

Appreciate the help.

Avatar
UncleCheese

Forum Moderator, 4102 Posts

6 May 2010 at 1:39pm

Where did you guys get this distribution of EventCalendar? That bug was fixed a really long time ago.

Avatar
3dgoo

Community Member, 135 Posts

6 May 2010 at 1:47pm

Go to Top