Sub DoBrowseRequest { ... } elsif ($action eq 'rc') { &BrowsePage($RCName); return 1; ...It implies for instance:
from whatever page to action 'rc', makes Referee over that page and Referer on $RCName
but from action 'rc' to wahtever page, does not make Referee over $RCName nor Referer on that page
(see WikiPatches/GetReferersBar)
So, other code would become
} elsif ($action eq 'rc') { print &GetHead('', T("$RCName"), ''); # you can always put here the content of $RCName print '<div class=wikirc>'; &DoRc(1); print &GetFoot(); return 1; ...--JuanmaMP