It worked with Views 6.x-2.6 . I am using URls to control displaying ("Disable help button on pages with no help" checked).
On the corresponding Node the Help Button appears, also the "edit Help" link is displayed, but no content shown.
The context help view seems to be ok: it displays the corresponding context.

Comments

Morn’s picture

Status: Active » Needs review

Found the error: in contexthelp.theme.inc , line 21:

$output .= views_embed_view('contexthelp', NULL, $node_id, 'all', _contexthelp_get_user_locale());

change NULL against 'default' :

$output .= views_embed_view('contexthelp', 'default', $node_id, 'all', _contexthelp_get_user_locale());
darren.ferguson’s picture

Status: Needs review » Closed (fixed)

http://drupal.org/cvs?commit=297180 this is the commit message to fix this issue, it will now be in the dev branch for the module.