]> sipb.mit.edu Git - ikiwiki.git/blobdiff - IkiWiki/Plugin/pagestats.pm
* Fix utf-8 in blog post form.
[ikiwiki.git] / IkiWiki / Plugin / pagestats.pm
index a1b4c1d45b59ed7df414765012ddaead887a1030..8ce563fc5ac489260db3122dc842621a8a51ae8b 100644 (file)
@@ -7,7 +7,7 @@
 #          (default)
 #   table: produces a table with the number of backlinks for each page
 #
-# By Enrico Zini.
+# by Enrico Zini
 package IkiWiki::Plugin::pagestats;
 
 use warnings;
@@ -34,7 +34,7 @@ sub preprocess (@) { #{{{
        my %counts;
        my $max = 0;
        foreach my $page (keys %IkiWiki::links) {
-               if (IkiWiki::globlist_match($page, $params{pages})) {
+               if (IkiWiki::pagespec_match($page, $params{pages})) {
                        my @bl = IkiWiki::backlinks($page);
                        $counts{$page} = scalar(@bl);
                        $max = $counts{$page} if $counts{$page} > $max;