Closed (fixed)
Project:
Module Builder
Version:
6.x-1.x-dev
Component:
Code
Priority:
Critical
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
1 Nov 2008 at 14:09 UTC
Updated:
25 Jan 2009 at 15:10 UTC
Jump to comment: Most recent file
Comments
Comment #1
jfillmore commentedThere is an & in the call on line 128 that doesn't need to be there so
$form = form_get_cache($form_build_id, &$form_state);Should be
$form = form_get_cache($form_build_id, $form_state);Comment #2
JamesAn commentedHere's the one-line changed wrapped up as a patch. Can a maintainer confirm this patch?
Comment #3
joachim commentedThanks for the fix. Committed.
(Though you guys know that the D6 version of this doesn't actually do anything right now, yeah?)