this module is misidentifying its ajax response as html. the fix is easy: add the one line below just after if ($ajax) in vote_up_down_vote():
drupal_set_header('Content-Type: text/javascript');
this module is misidentifying its ajax response as html. the fix is easy: add the one line below just after if ($ajax) in vote_up_down_vote():
drupal_set_header('Content-Type: text/javascript');
Comments
Comment #1
moshe weitzman commentedoops - looks like we are sending an html fragment and not javascript so the line to include is:
$GLOBALS['devel_shutdown'] = FALSE;
Comment #2
marvil07 commentedPlease take a look to the update on the project page, now
5.xis not-really-maintained.