Closed (duplicate)
Project:
Pollfield
Version:
5.x-1.6
Component:
Code
Priority:
Critical
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
21 Aug 2009 at 22:30 UTC
Updated:
22 May 2011 at 18:58 UTC
If you are having problems having your votes show up in pollfield, it's probably a cache issue. The problem, which I think was closed earlier though no fix was confirmed, is that the cache ID generated is wrong due to a typo.
Line 812, currently:
$cid = 'content:'. $node->nid .':'. $node->nid;
ought to be:
$cid = 'content:'. $node->nid .':'. $node->vid;
Changing this fixes the display problem.
I marked the issue as critical because there was no other category above 'normal', yet this issue affects all 5.x sites with caching turned on. Nonetheless it's a simple fix.
Comments
Comment #1
bryan kennedy commentedThis is a duplicate of a fixed issue - http://drupal.org/node/138907