Extension talk:StringLoop
Add topicAppearance
Latest comment: 13 years ago by Skew in topic Delimiter doesn't work
Delimiter doesn't work
[edit]Easy fix though, just change
$delimiter = $delimiter === null ? ' ' : $delimiter;
to
$delimiter = $delimiter === null ? ' ' : trim( $frame->expand( $delimiter ) );