Closed (fixed)
Project:
Pollfield
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
2 Dec 2009 at 15:08 UTC
Updated:
3 Mar 2011 at 23:31 UTC
Jump to comment: Most recent file
Comments
Comment #1
mario_prkos commentedThank you for offering a help. It is always welcome. This feature is made by request of one user and I am not sure is this tested right. This has to be done and I appreciate what you already done. Keep in touch I will look in it. Any suggestions for solution are welcome.
Thanks!
Comment #2
akrywko commentedI'm using this feature to make pools more reliable. What I really need is easy way to show every authenticated user who vote on every option. Using comments and current user_vote function isn't comfortable at all but it works. I only need to demand comment from every voter. Maybe you can solve this in more friendly and readable way?
In meantime I dig a little in drupal's sql tables..
Try using
$poll_result = db_query("SELECT * FROM {%s} INNER JOIN `node` ON {%s}.nid = node.nid WHERE {%s}.nid = %d AND {%s}.vid = node.vid", $table_content, $table_content, $table_content, $node->nid, $table_content);instead
$poll_result = db_query("SELECT * FROM {%s} WHERE nid = %d", $table_content, $node->nid);about line 480 in pollfield.module
Comment #3
akrywko commentedPatch for dev version from December 1, 2009.
I'm learning making patches. Is it correct?
Comment #4
mario_prkos commentedThanks I will applied it.
Comment #5
nibblebot commentedappears to be fixed in dev