summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Fischer <martin@push-f.com>2022-10-08 19:47:58 +0200
committerMartin Fischer <martin@push-f.com>2022-10-08 19:47:58 +0200
commitd17c17ce925a00bb91d6c596fb457e1104a7b57c (patch)
tree4f14ac7353bc206d6c5d7314a4543543312d6bd5
parent303edfc83a06766f0a1526810ac697e6e5e5d2e5 (diff)
fix: parse wikitext in passed-through lines
-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";