Index: nodequeue.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/nodequeue/nodequeue.module,v retrieving revision 1.39.2.28.2.22 diff -u -p -r1.39.2.28.2.22 nodequeue.module --- nodequeue.module 10 Oct 2007 23:07:37 -0000 1.39.2.28.2.22 +++ nodequeue.module 11 Oct 2007 23:06:28 -0000 @@ -302,7 +302,7 @@ function nodequeue_js_output($label, $hr } // let the world know this isn't normal output. - drupal_set_header('text/javascript'); + drupal_set_header('Content-type: text/javascript'); print drupal_to_js($return); exit; } @@ -1181,7 +1181,7 @@ function nodequeue_autocomplete($sqid = $output = _nodequeue_autocomplete($sqid, $string); // let the world know this isn't normal output. - drupal_set_header('text/javascript'); + drupal_set_header('Content-type: text/javascript'); print drupal_to_js(drupal_map_assoc($output)); exit; } @@ -1216,7 +1216,7 @@ function nodequeue_ajax_add() { $string = $_POST['add']; $output = _nodequeue_ajax_add($sqid, $position, $string); // let the world know this isn't normal output. - drupal_set_header('text/javascript'); + drupal_set_header('Content-type: text/javascript'); print drupal_to_js($output); exit; }