Active
Project:
Advanced Help Injection and Export
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
27 Jul 2011 at 20:23 UTC
Updated:
27 Jul 2011 at 20:24 UTC
In the generated help module code, this function ...
function mymodule_form_alter(&$form, $form_state, $form_id) {
mymodule_step_form($form, $form_id, 'mymodule_help_link');
$form['#description'] = isset($form['#description']) ? mymodule_get_from_key('form', $form_id) . ' ' . $form['#description'] : mymodule_get_from_key('form', $form_id);
}
incorrectly calls
function mymodule_get_from_key($key) {
which only expects one argument.