"Fatal error: Call to undefined function: _birthdays_get_todays_birthdays() in /home/dieinte1/public_html/sites/all/modules/birthdays/birthdays.module on line 772"

when running cron.

Sorry for reporting so many bugs here

Comments

maartenvg’s picture

That's an easy one to fix.
Please go to line 772 of birthdays.module and remove the first underscore '_' from the function call.

Thus changing

$users = _birthdays_get_todays_birthdays();

to

$users = birthdays_get_todays_birthdays();

I thank you very much for reporting these bugs! Don't hesitate to keep doing that when you find things that aren't in order.

jacauc’s picture

Found it on line 786 of the latest CVS version.
Thanks, that fixed it.

maartenvg’s picture

Status: Active » Fixed

Great to hear!

Anonymous’s picture

Status: Fixed » Closed (fixed)