Publish.pm: $VERSION = '$Rev: 13222 (26 Mar 2007) $';
Sub-web names are truncated so that their parent web is being published rather than the sub-web iteself.
The problem is at line 56 of Publish.pm:
53 my $query = TWiki::Func::getCgiQuery();
54 my $web = $query->param( 'web' ) || $session->{webName};
55 $query->delete('web');
56 $web =~ /(\w*)/;
57
58 $publisher->publishWeb($1);
A web of the form "Parent/Child" is reduced to "Parent".
Replacing line 56 with:
56 $web =~ /([\w\/]*)/;
Seems to fix things.
Thanks DIab, that worked
CC