Quote:
1) I do not use icons; therefore, I kept getting a mysql error. I solved this eventually by changing "iconid=$iconid"; in poll.php to "iconid=0;".
|
yeah, that's the best way
Quote:
2) I would like to have a regular prefix to poll threads in their title, something like "[Poll]:" - any idea how I can do that?
|
showthread.php, line 69
look for
Code:
$threadtitle=htmlspecialchars($threadinfo[title]);
change it to:
Code:
$threadtitle='Poll: ' . htmlspecialchars($threadinfo[title]);
That will add a Poll: infront of each poll.
Quote:
3) I think that somewhere on the forumdisplay, next to the poll-thread title or even under "replies" it should have the total number of voters so far. Any idea how I can add that?
|
that's planned for the next version