Found a typo of a variable (i hope this is the right way to report it).

Drupal 5.2, File version:
/* $Id: actions.module,v 1.25.2.2 2007/03/11 21:17:46 jvandyk Exp $ */

line 388ff

    else { // $aids is an actual function name
      $result[$aids] = $aids('do', array(), $a1, $a2, $a4, $a4);
    }

should be

    else { // $aids is an actual function name
      $result[$aids] = $aids('do', array(), $a1, $a2, $a3, $a4);
    }

Comments

Leeteq’s picture

Status: Active » Postponed (maintainer needs more info)

These are identical...

Edit: Ooops. they aren't, my mistake. Sorry.

jvandyk’s picture

Status: Active » Closed (fixed)
klapper’s picture

Status: Closed (fixed) » Active

Sorry, didn't get the activity after such a long time, but i guess, you didn't get it:

Take a look at the parameters: $a4, $a4 --> $a3, $a4

greggles’s picture

Status: Postponed (maintainer needs more info) » Closed (won't fix)

I believe that the solution is to upgrade to 5.x-2.x version of actions which no longer has this bug.