Subject: | [Patch] Checking out pages ending in "wiki" (i.e. "something wiki.wiki") |
It's not possible to checkout pages with names ending in wiki (e.g. a page called "about this
wiki", which should give a local page "about this wiki.wiki").
Patch: In Client.pm, line 1319 change
) if $name =~ /.wiki$/;
to
) if $name =~ /\.wiki$/;