+
+ if ($page ne $destpage &&
+ ((exists $license{$page} && ! exists $license{$destpage}) ||
+ (exists $copyright{$page} && ! exists $copyright{$destpage}))) {
+ # Force a scan of the destpage to get its copyright/license
+ # info. If the info is declared after an inline, it will
+ # otherwise not be available at this point.
+ IkiWiki::scan($pagesources{$destpage});
+ }
+
+ if (exists $license{$page} && $template->query(name => "license") &&
+ ($page eq $destpage || ! exists $license{$destpage} ||
+ $license{$page} ne $license{$destpage})) {
+ $template->param(license => IkiWiki::linkify($page, $destpage, $license{$page}));
+ }
+ if (exists $copyright{$page} && $template->query(name => "copyright") &&
+ ($page eq $destpage || ! exists $copyright{$destpage} ||
+ $copyright{$page} ne $copyright{$destpage})) {
+ $template->param(copyright => IkiWiki::linkify($page, $destpage, $copyright{$page}));
+ }