From b215c45070a79af876918200c3c08301600475b2 Mon Sep 17 00:00:00 2001 From: "community.cacert.org" Date: Fri, 12 Jun 2009 05:07:23 +0000 Subject: [PATCH] format voter/votes with : suggested by Mario git-svn-id: http://svn.cacert.cl/Software/Voting/vote@60 d4452222-2f33-11de-9270-010000000000 --- motions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 "Votes:
"; while ($vrow = $vstmt->fetch()) { - echo "".$vrow['name']." ".$state[$vrow['vote']+1]."
"; + echo "".$vrow['name'].": ".$state[$vrow['vote']+1]."
"; } } else { echo 'Show Votes
';