I found that subpages are not properly handled under the links actions. Try, LocalWiki:action=links&editlink=1. For example, when I last ran the command, the BrowsePage entry on the list did not properly handle the BrowsePage/Code subpage.
Insert the following code
sub GetFullLinkList { ... ## PATCH - fix subpages on link list if ( $link =~ /^\// ) { $link = $name.$link; } ## END PATCH $seen{$link}++; ...
Am I missing a reason why the top page is not prepended? JamesHodge?
if ( $link =~ /^\// ) { $link = (split('/',$name))[0].$link; }