diff options
author | community.cacert.org <community.cacert.org@d4452222-2f33-11de-9270-010000000000> | 2009-06-12 05:07:23 +0000 |
---|---|---|
committer | community.cacert.org <community.cacert.org@d4452222-2f33-11de-9270-010000000000> | 2009-06-12 05:07:23 +0000 |
commit | b215c45070a79af876918200c3c08301600475b2 (patch) | |
tree | cba69f74b63fe814c7817c3cca3c46f212e0ce78 | |
parent | 9355a999efbba7f7fbc6800a1cc15cdc33926c5a (diff) | |
download | cacert-boardvoting-b215c45070a79af876918200c3c08301600475b2.tar.gz cacert-boardvoting-b215c45070a79af876918200c3c08301600475b2.tar.xz cacert-boardvoting-b215c45070a79af876918200c3c08301600475b2.zip |
format voter/votes with : suggested by Mario
git-svn-id: http://svn.cacert.cl/Software/Voting/vote@60 d4452222-2f33-11de-9270-010000000000
-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/>'; |