Skip to content

Commit

Permalink
Item1754: fix direct call violation instead of using Func
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.foswiki.org/trunk/MostPopularPlugin@4277 0b4bb1d4-4e5a-0410-9cc4-b2b747904278
  • Loading branch information
WillNorris authored and WillNorris committed Jun 22, 2009
1 parent cc64443 commit dcd794a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/TWiki/Plugins/MostPopularPlugin.pm
Expand Up @@ -53,8 +53,8 @@ sub _MOSTPOPULAR {
my $limit = $params->{limit} || 10;
my $format = $params->{format} || "| \$web | \$topic | \$views |";
my $header = $params->{header} || "| *Web* | *Topic* | *Views* |";
my $noheader = TWiki::isTrue( $params->{noheader} );
my $groupbyweb = TWiki::isTrue( $params->{groupbyweb} );
my $noheader = TWiki::Func::isTrue( $params->{noheader} );
my $groupbyweb = TWiki::Func::isTrue( $params->{groupbyweb} );
my $excludedRaw = $params->{excluded} || "";
my $excludedtopicRaw = $params->{excludetopic} || "";

Expand Down

0 comments on commit dcd794a

Please sign in to comment.