It is hitting the infamous by reference bug that many modules seem to hit:

Warning: Parameter 1 to imagecache_profiles_comment_view() expected to be a reference, value given in module_invoke_all() (line 817 of C:\wamp\www\drupal-7\includes\module.inc).

Warning: Parameter 1 to imagecache_profiles_node_view() expected to be a reference, value given in module_invoke_all() (line 817 of C:\wamp\www\drupal-7\includes\module.inc).

To fix, on line 177 replace
function imagecache_profiles_comment_view(&$comment) {

with

function imagecache_profiles_comment_view($comment) {

and on line 194, replace

function imagecache_profiles_node_view(&$node, $view_mode) {

with

function imagecache_profiles_node_view($node, $view_mode) {

Comments

andypost’s picture

As docs says http://api.drupal.org/api/search/7/_comment_view none of hook_comment_view() used &

Are you really sure that problem in this implementation?

andypost’s picture

Status: Active » Fixed

Thanx, commited to HEAD. Seems it's a good time for next release

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.