diff options
-rw-r--r-- | motions.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/motions.php b/motions.php index 4d96519..a087c9e 100644 --- a/motions.php +++ b/motions.php @@ -100,7 +100,7 @@ BODY; $vstmt->execute(array($row['id'])); echo "<i>Votes:</i><br/>"; while ($vrow = $vstmt->fetch()) { - echo "<i>".$vrow['name']." ".$state[$vrow['vote']+1]."</i><br/>"; + echo "<i>".$vrow['name'].": ".$state[$vrow['vote']+1]."</i><br/>"; } } else { echo '<i><a href="motions.php?motion='.$row['tag'].'&showvotes=1">Show Votes</a></i><br/>'; |