Here is the scenario: I noticed that the total number of physical votes reflected in a given poll did not match the "x total votes" verbiage at the top of the poll.

I believe the following to be true:
1) The poll votes are recorded in the MySQL database table PollVotes.
2) The poll votes are counted (by querying this table during the page build) using the number of unique entries in the P_Voter field of the PollVotes table.
3) If a number of users vote from the same company (same public Internet IP address) or location (such as a home with multiple users sharing the same ISP IP address), then the "x total votes" count will be wrong as it would only reflect one vote for a given IP address. (See duplicate vote prevention note below.)
4) I confirmed this by using phpMyAdmin to insert rows in the PollVotes table with the same vote results and IP address. The IP address is also the only apparent method of preventing duplicate or multiple votes, there fore I don't see a way to have the "x total votes" to reflect the actual number of votes, unless I manually edit the table.

I searched the support forum but could not find a similar situation or discussion. In summary, my questions are:

Is this a bug or limitation?

Can anyone offer a fix or hack to allow an accurate count based on the actual number of entries in the PollVotes table?

Is there a viable workaround to the multiple vote prevention method of IP address tracking? Maybe using cookies or a timer to allow one vote per so much time?

Am I nuts? <--- Rhetorical question.

TIA for any help.