Content not shown after upgrading to Views 6.x-2.7
Morn - November 5, 2009 - 08:26
| Project: | Context Help |
| Version: | 6.x-1.0-rc4 |
| Component: | Code |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | closed |
Jump to:
Description
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.

#1
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());#2
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.