The implementation of hook_footer() in getclicky.module was causing code to be output to the header on page requests, specifically killing the rendering in IE8.

The problem code:
$script .= _getclicky_output_js_code($site_id_number);
print_r($script);
return $script;

At least a temporary fix was to comment out line 153, alas:
$script .= _getclicky_output_js_code($site_id_number);
// print_r($script);
return $script;

What is the purpose of the print_r statement here?

Comments

vuuch’s picture

6.x-1.5 caused me hours of agony in IE 8 before I discovered this bug. It's a nasty bug, specific to IE. Ouch. I've had to disable this module -- and am unlikely to come back to it.

mavimo’s picture

Status: Active » Closed (duplicate)