diff options
author | Martin Fischer <martin@push-f.com> | 2022-10-08 19:47:58 +0200 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2022-10-08 19:47:58 +0200 |
commit | d17c17ce925a00bb91d6c596fb457e1104a7b57c (patch) | |
tree | 4f14ac7353bc206d6c5d7314a4543543312d6bd5 | |
parent | 303edfc83a06766f0a1526810ac697e6e5e5d2e5 (diff) |
fix: parse wikitext in passed-through lines
-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"; |