On PHP 5.3, to get rid of this warning:

"Parameter 1 to profile_load_profile() expected to be a reference"

In getclicky.module, in function getclicky_footer, change line:
$p_bool = module_invoke('profile', 'load_profile', $user);
into
$p_bool = module_invoke('profile', '_load_profile', $user);

It took me lots of hours to find the cause of such warning.

Comments

ryan88’s picture

Thank you for this. I was going crazy trying to figure out where this error was coming from.

daftu’s picture

Thanks for solution. It's working!

rsvelko’s picture

Assigned: Unassigned » rsvelko
Status: Active » Fixed

fixed and tested

commits:
2f13ebd
9beae7f

rsvelko’s picture

Status: Fixed » Closed (fixed)