summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Vote.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Vote.php b/Vote.php
index b7f9724..2eae79d 100644
--- a/Vote.php
+++ b/Vote.php
@@ -100,7 +100,7 @@ class VoteHooks {
foreach ($lines as $idx => $line) {
if (array_key_exists('raw', $line)) {
- $voteText .= $line['raw'];
+ $voteText .= $parser->recursiveTagParse($line['raw']);
} elseif (array_key_exists('error', $line)) {
$addErrorCategory();
$voteText .= '* ' . formatError($line['error'] . ':') . " " . $line['line'] . "\n";