diff options
author | Simon McVittie <smcv@debian.org> | 2015-06-09 09:47:40 +0100 |
---|---|---|
committer | Simon McVittie <smcv@debian.org> | 2015-06-09 22:28:31 +0100 |
commit | 8e007666d4ad28331bafa14d38b14a1e82be539d (patch) | |
tree | 0b41aaca6a6e321539c9ce98a04ca3e47c14bde5 /IkiWiki/Plugin | |
parent | 7a96363c6df53474d24cd9bf885c5a13941cf72b (diff) | |
download | ikiwiki-8e007666d4ad28331bafa14d38b14a1e82be539d.tar ikiwiki-8e007666d4ad28331bafa14d38b14a1e82be539d.tar.gz |
brokenlinks: sort the pages that link to the missing page, for better reproducibility
Diffstat (limited to 'IkiWiki/Plugin')
-rw-r--r-- | IkiWiki/Plugin/brokenlinks.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/brokenlinks.pm b/IkiWiki/Plugin/brokenlinks.pm index 8ee734bf9..2318298fe 100644 --- a/IkiWiki/Plugin/brokenlinks.pm +++ b/IkiWiki/Plugin/brokenlinks.pm @@ -39,7 +39,7 @@ sub preprocess (@) { htmllink($page, $params{destpage}, $link, noimageinline => 1), join(", ", map { htmllink($params{page}, $params{destpage}, $_, noimageinline => 1) - } @pages) + } sort @pages) ); } |