diff options
Diffstat (limited to 'Vote.php')
-rw-r--r-- | Vote.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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"; |