Skip to content

Commit cd83938

Browse files
fix %LIST% render issue due to recent refactor using Inclusion class instead of array.
1 parent 6f3dc2d commit cd83938

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/class/Servicerender.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -709,7 +709,7 @@ protected function pageoptlist(string $text): string
709709

710710
$pagetable = $this->pagemanager->pagetable($this->pagemanager->pagelist(), $optlist);
711711
$content = $optlist->listhtml($pagetable, $this->page);
712-
$text = str_replace($match['fullmatch'], $content, $text);
712+
$text = str_replace($match->fullmatch(), $content, $text);
713713
} catch (RuntimeException $e) {
714714
Logger::errorex($e);
715715
}

0 commit comments

Comments
 (0)