From d17c17ce925a00bb91d6c596fb457e1104a7b57c Mon Sep 17 00:00:00 2001 From: Martin Fischer Date: Sat, 8 Oct 2022 19:47:58 +0200 Subject: fix: parse wikitext in passed-through lines --- Vote.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Vote.php') 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"; -- cgit v1.2.3