I'm receiving this error when I try to run a cron job or I try to save the configuration for the module.
Fatal error: Call to undefined function drupal_debug() in /.../public_html/drupal/modules/cd_sunlight/cd_sunlight.module on line 1673
I'm receiving this error when I try to run a cron job or I try to save the configuration for the module.
Fatal error: Call to undefined function drupal_debug() in /.../public_html/drupal/modules/cd_sunlight/cd_sunlight.module on line 1673
Comments
Comment #1
deggertsen commentedI just noticed that in the log it's giving me this whenever I try to run the cron. This only happens while I have this module installed.
Cron run exceeded the time limit and was aborted.
Comment #2
deggertsen commentedI tried to comment out the function on line 1673 but it came back with this error:
Fatal error: Call to undefined function _cd_sunlight_api_lookup() in /.../public_html/drupal/modules/cd_sunlight/cd_sunlight.module on line 1995
Comment #3
dalinI just discovered this yesterday as well. You just need to remove
drupal_debug($params, '$params');This is already fixed in the 6.x-1.x-dev version. Sorry for the inconvenience.Comment #4
deggertsen commentedWonderful! Thank you.