Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Item13058: WebFilter user is a global, not a function
  • Loading branch information
gac410 committed Oct 21, 2014
1 parent f9c6e38 commit c0a6ba1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/lib/Foswiki/UI/Statistics.pm
Expand Up @@ -150,8 +150,8 @@ sub statistics {
while ( $it->hasNext() ) {
my $w = $it->next();
next
unless Foswiki::WebFilter->user()
->ok( $session, "$subweb/$w" );
unless $Foswiki::WebFilter::user->ok( $session,
"$subweb/$w" );
push( @weblist, "$subweb/$w" );
}
$webObj->finish();
Expand Down

0 comments on commit c0a6ba1

Please sign in to comment.