This mod spits out this error message at the bottom of the page:
Fatal error: Call to undefined function: drupal_set_html_head() in /home/alafrang/public_html/modules/jsdomenu/jsdomenu.module on line 34

Comments

nedjo’s picture

Assigned: Unassigned » nedjo

Thanks for noting this problem. I believe this issue was caused by my use of a call outside a hook (and likely showed up only when caching was enabled). I've now addressed it by putting the call in the _link hook:

function jsdomenu_link($type, $node = 0, $main = 0) {
  if ($type == "system") {
    jsdomenu_set_head();
  }
}

Please return the bug report status to "active" if, when you've downloaded the revised code, you find this doesn't fix the error...

Anonymous’s picture