From cdbe8462db0fe1e024c98ab08b0768b5f2b8c2fb Mon Sep 17 00:00:00 2001 From: Andrew Garrett Date: Thu, 5 Feb 2009 09:07:33 +0000 Subject: [PATCH] Fix r46838 per IAlex on Code Review --- includes/Title.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/Title.php b/includes/Title.php index d6ce01e7ab..7098510ab6 100644 --- a/includes/Title.php +++ b/includes/Title.php @@ -1496,7 +1496,7 @@ class Title { } # Shortcut for public wikis, allows skipping quite a bit of code - if ( !empty( $wgGroupPermissions['*'] ) ) + if ( !empty( $wgGroupPermissions['*']['read'] ) ) return true; if( $wgUser->isAllowed( 'read' ) ) { -- 2.20.1