Closed (fixed)
Project:
Agenda
Version:
7.x-1.0
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
28 Feb 2011 at 04:28 UTC
Updated:
3 Jan 2014 at 02:58 UTC
Jump to comment: Most recent
Dear all
Thanks for your contributions, drupal is amazing and lots of modules are very useful.
About the issue
When I activate the agenda I get this error:
Fatal error: Call to undefined function date_make_date() in \drupal-7.0\modules\agenda\agenda.module on line 356
Does anyone know something about this error??
Thanks
Comments
Comment #1
toolin commentedthis error is due to a change in the Date API module, instead of date_make_date you need to use the new DateObject class. see "D7 Changes" here: http://drupal.org/project/date
I fixed this as follows, but not sure if I'm using the DateObject properly.
Edit this block of code in agenda.module, line 354
replace with
alternatively, just comment out the whole block.
Comment #2
aidanlis commentedThanks, fixed.