Closed (won't fix)
Project:
Actions
Version:
5.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
11 Sep 2007 at 14:58 UTC
Updated:
15 Aug 2008 at 16:21 UTC
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
Comment #1
Leeteq commentedThese are identical...
Edit: Ooops. they aren't, my mistake. Sorry.
Comment #2
jvandyk commentedComment #3
klapper commentedSorry, 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
Comment #4
gregglesI believe that the solution is to upgrade to 5.x-2.x version of actions which no longer has this bug.