diff options
author | Joey Hess <joey@gnu.kitenet.net> | 2009-04-23 16:23:52 -0400 |
---|---|---|
committer | Joey Hess <joey@gnu.kitenet.net> | 2009-04-23 16:23:52 -0400 |
commit | 14d8df55ad6099e1785c6e568b6f020abca3290f (patch) | |
tree | ecb49878cdcf060290f82ec57a45ae271de98f36 /IkiWiki | |
parent | 2f96c49bd1826ecb213ae025ad456a714aa04863 (diff) | |
download | ikiwiki-14d8df55ad6099e1785c6e568b6f020abca3290f.tar ikiwiki-14d8df55ad6099e1785c6e568b6f020abca3290f.tar.gz |
simplify
Diffstat (limited to 'IkiWiki')
-rw-r--r-- | IkiWiki/Plugin/postsparkline.pm | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/IkiWiki/Plugin/postsparkline.pm b/IkiWiki/Plugin/postsparkline.pm index c2ebbc5eb..d2e5c2378 100644 --- a/IkiWiki/Plugin/postsparkline.pm +++ b/IkiWiki/Plugin/postsparkline.pm @@ -50,11 +50,10 @@ sub preprocess (@) { add_depends($params{page}, $params{pages}); - my @list=pagespec_match_list( - [ grep { $_ ne $params{page} } keys %pagesources], - $params{pages}, location => $params{page}); - - @list = sort { $params{timehash}->{$b} <=> $params{timehash}->{$a} } @list; + my @list=sort { $params{timehash}->{$b} <=> $params{timehash}->{$a} } + pagespec_match_list( + [ grep { $_ ne $params{page} } keys %pagesources], + $params{pages}, location => $params{page}); my @data=eval qq{IkiWiki::Plugin::postsparkline::formula::$formula(\\\%params, \@list)}; if ($@) { |