When I delete multiple user accounts, my watchdog gets flooded with the following error message:

Missing argument 4 for fastpath_fscache_user() in /home/robin/public_html/modules/fastpath_fscache/fastpath_fscache.module on line 91.

Also, each time someone tries to view a profile, the same error occurs.

Comments

RobinJ’s picture

I found out that the variable $category is not used anywhere in function fastpath_fscache_user, so on line 91 in fastpath_fscache.module

function fastpath_fscache_user($type, $array, $user, $category) {

can be replaced with

function fastpath_fscache_user($type, $array, $user) {

I dunno how to submit a patch, so someone else can do that

moshe weitzman’s picture

Status: Active » Fixed

i see $category = NULL as 4th param in my version (DRUPAL-5-1 branch). seems like this got fixed.

Anonymous’s picture

Status: Fixed » Closed (fixed)