Find out which modules call cron
echo theme('item_list', module_implements('cron'));
(or)
in module.inc put this
foreach (module_implements($hook) as $module) {
$function = $module .'_'. $hook;
if ($hook=='cron'){
echo "$module <br />";
}
(or)
in module.inc put this
foreach (module_implements($hook) as $module) {
$function = $module .'_'. $hook;
if ($hook=='cron'){
echo "$module <br />";
}
Comments
Post a Comment