This is about the database "review" model where users are allowed to give an entry once (limit: 1).
Users are allowed to see the poll results from all users. However, for Privacy Reasons users can only see their own entries on form results table:
In plugin
Easy Forms Part 3 replace
Code:
$formresults = $db->query_read("SELECT * FROM " . TABLE_PREFIX . "formresults WHERE fid = '$fid' $search AND userid=" . $vbulletin->userinfo[userid] . " ORDER BY time DESC");
to
Code:
$formresults = $db->query_read("SELECT * FROM " . TABLE_PREFIX . "formresults WHERE fid = '$fid' $search AND userid=" . $vbulletin->userinfo[userid] . " ORDER BY time DESC");