Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions www/ifdb.css
Original file line number Diff line number Diff line change
Expand Up @@ -1960,6 +1960,7 @@ img.vote-checkmark {
height: 20px;
border: none;
vertical-align: middle;
margin-right: 5px;
}

/*
Expand Down
10 changes: 5 additions & 5 deletions www/poll
Original file line number Diff line number Diff line change
Expand Up @@ -1318,14 +1318,14 @@ function expandVote(id)
$aVote = "<a href=\"poll?id=$id&submitVote"
. "&gameID=$prvGameID&quickQuote=&voteDesc=\">";
echo " $aVote<img class=\"vote-checkmark\" "
. "border=0 src=\"img/blank.gif\"></a> "
. "{$aVote}Vote for this game anonymously</a>";
. "border=0 src=\"img/blank.gif\" alt=\"\">"
. "Vote for this game anonymously</a>";
} else {
$aVote = "<a href=\"poll?id=$id&addVote"
. "&game=$prvGameID\">";
. "&game=$prvGameID\">";
echo " $aVote<img class=\"vote-checkmark\" "
. "border=0 src=\"img/blank.gif\"></a> "
. "{$aVote}Vote for this game</a>";
. "border=0 src=\"img/blank.gif\" alt=\"\">"
. "Vote for this game</a>";
}
}
echo "</span>";
Expand Down