Gallery assist appears to clash with the core polls module in drupal 6.x. When I activate gallery assist, pages with polls on them no longer display their polls at all. The editing options and current state of the poll are still visible in the "edit" tab, but not on the "view" tab or when logged out.
Comments
Comment #1
jcmc commentedHello DissidentFool,
I am sorry. The error is the call of node_prepare() in the gallery_assist_nodeapi() function.
It was only a experiment, a test one day but was inadvertently released.
If you are using currently gallery_assist please comment the line in the function gallery_assist_nodeapi().
If not, I am sorry again.
Line should be commented or removed:
//$node = node_prepare($node, $teaser);
Regards and thanks
Juan Carlos
Comment #2
jcmc commentedFixed at version 1.9-beta2.
If you have the same issue please search in the module file for the line :
$node = node_prepare($node, $teaser);and comment or remove it.
Comment #3
jcmc commentedComment #4
DissidentFool commentedThanks jcmc,
That has indeed sorted it!