*** lib/TWiki.pm.orig Tue Jan 8 13:50:23 2002 --- lib/TWiki.pm Tue Jan 8 13:51:26 2002 *************** *** 1434,1444 **** --- 1434,1446 ---- my $dontRecurse; my $prefix; my $usesep; + my $postfix; if( $args ) { $dontRecurse = extractNameValuePair( $args, "dontrecurse" ); $prefix = extractNameValuePair( $args, "prefix" ); $usesep = extractNameValuePair( $args, "separator" ); + $postfix = extractNameValuePair( $args, "postfix" ); } if( ! $usesep ) { *************** *** 1486,1491 **** --- 1488,1496 ---- if( $text && $prefix ) { $text = "$prefix$text"; + } + if( $text && $postfix ) { + $text = "$text$postfix"; } $text = handleCommonTags( $text, $topic, $web );