From 3f9c7b1df947cb604c28fb9129d070cdf287c587 Mon Sep 17 00:00:00 2001
From: Tobias Mueller <tobiasmue@gnome.org>
Date: Sat, 6 Jun 2009 17:53:27 +0200
Subject: [PATCH] Remove a htmlspecialchars() on the results

Because we want to have the result stored as markup in the database.
---
 foundation.gnome.org/vote/results.wml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/foundation.gnome.org/vote/results.wml b/foundation.gnome.org/vote/results.wml
index b17bbb4..ac5ad5e 100644
--- a/foundation.gnome.org/vote/results.wml
+++ b/foundation.gnome.org/vote/results.wml
@@ -57,7 +57,7 @@ if (isset ($election) && $election !== FALSE) {
 
 if ($display) {
   echo "<hr/>";
-  echo htmlspecialchars($results["result"]);
+  echo $results["result"]; // We want to pull Markup from the database and display it here.
   echo "<hr/>";
    
   echo "<p>Please look at the <a href=\"votes.php?election_id=".rawurlencode($election_id)."\">list of all votes</a> and verify that your vote is correct.</p>\n";