diff options
author | Simon McVittie <smcv@debian.org> | 2014-07-11 22:57:30 +0100 |
---|---|---|
committer | Simon McVittie <smcv@debian.org> | 2014-07-11 22:57:30 +0100 |
commit | 9e108aeb450281d8fb7bc42bb6b0d2b543994980 (patch) | |
tree | 13981f6efca9b799b92f666588ee62c37b33ec46 | |
parent | d45c490c6c8a2191f3a3dd2c3c70d1237326fc24 (diff) | |
download | ikiwiki-9e108aeb450281d8fb7bc42bb6b0d2b543994980.tar ikiwiki-9e108aeb450281d8fb7bc42bb6b0d2b543994980.tar.gz |
album: avoid excess dependencies by not matching internal(*)
-rw-r--r-- | IkiWiki/Plugin/album.pm | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/IkiWiki/Plugin/album.pm b/IkiWiki/Plugin/album.pm index c0ccc08c7..b2a3e583d 100644 --- a/IkiWiki/Plugin/album.pm +++ b/IkiWiki/Plugin/album.pm @@ -265,11 +265,7 @@ sub collect_images { $sections{$filter} = \@section; } - # the pagespec here matches everything; the part we actually want - # is the sorting - $sections{""} = [pagespec_match_list($album, - "internal(*)", sort => $sort, - list => [@remaining])]; + $sections{""} = [IkiWiki::sort_pages($sort, \@remaining)]; my @ordered; |